Examples of OCAccountingRegisterManager


Examples of com.ipc.oce.objects.OCAccountingRegisterManager

    assertNotNull(app.findVarset(EComparisonType.NOT_IN_LIST_BY_HIERARCHY));
  }

  @Test
  public void getAccountingRegister() throws JIException {
    OCAccountingRegisterManager manager = app
        .getAccountingRegisterManager("Налоговый");

    OCAccountingRegisterMetadataObject metadata = manager.getMetadata();

    assertNotNull(metadata.getFullName());

    OCAccountingRegisterSelection selection = manager.select(null, null);
    assertTrue(selection.next());
    System.out.println("isActive " + selection.isActive());
    System.out.println("getLineNumber: " + selection.getLineNumber());
    System.out.println("getPeriod: " + selection.getPeriod());
    System.out.println("getNumberAsString: "
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.