Examples of PayableAmountType


Examples of oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.PayableAmountType

                return currencyDecimal;
        }
    }

    private CurrencyDecimal createGrandTotal(MonetaryTotalType monetaryTotalType) {
        PayableAmountType payableAmountType = monetaryTotalType.getPayableAmount();
        BigDecimal value = payableAmountType.getValue();
        String currencyCode = payableAmountType.getCurrencyID().value();
        return createCurrencyDecimal(value, currencyCode);
    }
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.