Examples of CurrencyCodeContentType


Examples of un.unece.uncefact.codelist.specification._54217._2001.CurrencyCodeContentType

        return new File(SystemUtil.TMP_DIR, sb.toString());
    }

    public static CurrencyCodeContentType getFirstInvoiceLinePriceCurrency(InvoiceType invoiceType) {
        List<InvoiceLineType> invoiceLineTypes = invoiceType.getInvoiceLine();
        CurrencyCodeContentType invoiceLinePriceCurrency = null;
        for (InvoiceLineType invoiceLineType : invoiceLineTypes) {
            PriceType invoiceLineTypePrice = invoiceLineType.getPrice();
            PriceAmountType priceAmountType = invoiceLineTypePrice.getPriceAmount();
            invoiceLinePriceCurrency = priceAmountType.getCurrencyID();
            break;
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.