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