protected void buttonPressed(int buttonId) {
if (buttonId == OK) {
try {
if (skipActualExpenditure.getSelection()){
system.execute(new SkipExpenditure(expenditureId, getNextPaymentDate(getExpenditure())));
}else{
system.execute(new SkipExpenditure(expenditureId));
}
controlCenter.reloadScreen();
} catch (TransactionDateException e) {
MessageBox box = new MessageBox(getShell(), IMessageProvider.INFORMATION);