Package com.centraview.account.invoice

Examples of com.centraview.account.invoice.InvoiceLocalHome.create()


      throw new AuthorizationFailedException("Invoice- createInvoice");
    InvoiceVO returnVO = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      InvoiceLocalHome home = (InvoiceLocalHome) ic.lookup("local/Invoice");
      InvoiceLocal remote = home.create(invoiceDetail, userID, this.dataSource);
      remote.setDataSource(this.dataSource);
      returnVO = remote.getInvoiceVO();
    } catch (Exception e) {
      logger.error("[createInvoice]: Exception", e);
    }
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.