Examples of PaymentMeansType


Examples of oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.PaymentMeansType

        render();
    }

    private void render() {
        if (supplierPartyTable.getPdfInvoice().getInvoiceType().getPaymentMeans().size() > 0) {
            PaymentMeansType paymentMeansType =
                    supplierPartyTable.getPdfInvoice().getInvoiceType().getPaymentMeans().get(0);
            String supplierBankName =
                    InvoiceTypeParser.parseFinancialInstitutionName(paymentMeansType.getPayeeFinancialAccount());
            String supplierBankAcc =
                    InvoiceTypeParser.parseFinancialAccountID(paymentMeansType.getPayeeFinancialAccount());
            String supplierBankBic =
                    InvoiceTypeParser.parseFinancialInstitutionID(paymentMeansType.getPayeeFinancialAccount());

            if (supplierPartyTable.toBeRendered(org.openinvoice.ubl4j.core.common.text.TextLabel.SUPPLIER_BANK_NAME)) {
                addCell(org.openinvoice.ubl4j.core.common.text.TextLabel.SUPPLIER_BANK_NAME_LABEL, supplierBankName);
            }
            if (supplierPartyTable.toBeRendered(org.openinvoice.ubl4j.core.common.text.TextLabel.SUPPLIER_BANK_ACCOUNT)) {
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.