@Override
public void doSave() throws EJbsObject {
logger.debug("Saving data...");
try {
OrderConfirmationsRemote orderConfirmations = (OrderConfirmationsRemote) ClientTools.getRemoteBean(OrderConfirmationsRemote.class);
super.doSave();
if ((this.getDlgState() == DlgState.dsInsert) || (this.getDlgState() == DlgState.dsCopy)) {
orderConfirmations.createDataset(this.getOrderConfirmation(), ClientGlobals.getUser(), ClientGlobals.getCompany());
} else if (this.getDlgState() == DlgState.dsEdit) {
logger.debug("Saving existing entity " + this.getOrderConfirmation().getId() + ".");
orderConfirmations.updateDataset(this.getOrderConfirmation(), ClientGlobals.getUser());
}
logger.debug("Entity saved.");
} catch (NamingException e) {
logger.error("Error saving credit-note..", e);
}