Examples of CashBook


Examples of org.openbravo.model.financialmgmt.cashmgmt.CashBook

    {
      final OBCriteria<Currency> cc = OBDal.getInstance().createCriteria(Currency.class);
      cc.add(Expression.eq(Currency.PROPERTY_ISOCODE, "USD"));
      final List<Currency> cs = cc.list();
      final Currency currency = cs.get(0);
      final CashBook c = OBProvider.getInstance().get(CashBook.class);
      c.setName("c_" + System.currentTimeMillis());
      c.setDescription("test");
      c.setDefault(false);
      c.set(CashBook.PROPERTY_CURRENCY, currency);

      OBDal.getInstance().save(c);
      cashBookId = c.getId();
      SessionHandler.getInstance().commitAndClose();
    }

    // now check if the save indeed worked out by seeing if there is a
    // cashbook account
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.