Package com.suarte.core

Examples of com.suarte.core.Invoice.addDetail()


        invoice.setExpirationDate(expirationDate);

        for (QuotationDetail qDetail : quotation.getDetails()) {
            InvoiceDetail invoiceDetail = new InvoiceDetail();
            invoiceDetail.setQuotationDetail(qDetail);
            invoice.addDetail(invoiceDetail);
        }
        invoiceManager.save(invoice);

        if (quotation.getCurrency().getSymbol().equals("$")) {
            quotation.getCompany().debit(MathUtils.round(quotation.getTotalCost()), MathUtils.round(quotation.getEquivalentAmount()));
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.