Package org.openbravo.model.financialmgmt.cashmgmt

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


   * Tests the Organization Access Level.
   */
  public void testAccessLevelOrganization() {
    setUserContext("0");
    final Organization o = OBDal.getInstance().get(Organization.class, "0");
    final CashJournal c = OBDal.getInstance().get(CashJournal.class, "1000000");
    c.setOrganization(o);

    try {
      commitTransaction();
      fail();
    } catch (final OBException e) {
View Full Code Here

TOP

Related Classes of org.openbravo.model.financialmgmt.cashmgmt.CashJournal

Copyright © 2018 www.massapicom. 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.