GDDate date = new GDDate(parcel.getDate());
GDDate today = new GDDate();
GDDate todayPlusOneWeek = new GDDate();
todayPlusOneWeek.addDays(7);//(Calendar.DAY_OF_MONTH, 7);
GDDate graceDays = new GDDate(parcel.getDate());
graceDays.addDays(Integer.valueOf(system.getProperty("gracedays")));
TableItem item2 = new TableItem(parcelTable, SWT.NONE);
if (parcel.isPayed()) {
item2.setImage(new Image(null, "img/icoPay.png"));
payTotal += parcel.getPayValue();