Package org.bigk.invoices.model

Examples of org.bigk.invoices.model.Tax


          + ") - start");
    }

    // read and set Tax object
    if (invoicePosition.getTaxId() != null) {
      Tax tax = taxesService.getTax(invoicePosition.getTaxId());
      invoicePosition.setTax(tax);
    }
   
    // set parent of this position
    invoicePosition.setInvoice(invoice);
View Full Code Here


          + ") - start");
    }

    // read and set Tax object
    if (invoicePosition.getTaxId() != null) {
      Tax tax = taxesService.getTax(invoicePosition.getTaxId());
      invoicePosition.setTax(tax);
    }
   
    // set parent of this position
    invoicePosition.setInvoice(invoice);
View Full Code Here

          + ", Long idx=" + idx + ") - start");
    }
   
    // read and set Tax object
    if (invoicePosition.getTaxId() != null) {
      Tax tax = taxesService.getTax(invoicePosition.getTaxId());
      invoicePosition.setTax(tax);
    }
   
    // set parent of this position
    invoicePosition.setInvoice(invoice);
View Full Code Here

 
  @Override
  public Tax getTax(Long id) throws ServiceException {
    logger.debug("getTax(id=[{}]) - start", + id);

    Tax tax = em.find(Tax.class, id);

    logger.debug("getTax(Long) - end - return value=[{}]", tax);
    return tax;
  }
View Full Code Here

  public Tax getTax(Long id) throws ServiceException {
    if (logger.isDebugEnabled()) {
      logger.debug("getTax(Long id=" + id + ") - start");
    }

    Tax object = null;
    Session session = null;
    try {
      session = HibernateUtils.getCurrentSession();
      object = (Tax) session.get(Tax.class, id);
     
View Full Code Here

TOP

Related Classes of org.bigk.invoices.model.Tax

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.