Package org.jabusuite.accounting.session

Examples of org.jabusuite.accounting.session.AccountEntriesRemote.updateDataset()


            if (this.getDlgState() == DlgState.dsInsert) {
                logger.info("Adding new entity");
                accountEntries.createDataset(this.getAccountEntry(), ClientGlobals.getUser(), ClientGlobals.getCompany());
            } else if (this.getDlgState() == DlgState.dsEdit) {
                logger.info("Saving existing entity " + this.getAccountEntry().getId() + ".");
                accountEntries.updateDataset(this.getAccountEntry(), ClientGlobals.getUser());
            }
            System.out.println("Entity saved.");
        } catch (NamingException e) {
            e.printStackTrace();
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.