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