Package org.openinvoice.ubl4j.task.create.order

Examples of org.openinvoice.ubl4j.task.create.order.CreateInvoiceBasedOnOrderTask


        File orderFile = new File(options.convertOrderToInvoice);
        if (!orderFile.exists()) {
            throw new UBL4JException(String.format("order '%s' doesn't exist", orderFile.getAbsolutePath()));
        }
        ((CreateInvoiceBasedOnOrderInput)input).setOrderURI(URI.create(orderFile.toURI().getPath()));
        CreateInvoiceBasedOnOrderTask task = new
                CreateInvoiceBasedOnOrderTask();
        task.execute(input);
        print(task);
    }
View Full Code Here

TOP

Related Classes of org.openinvoice.ubl4j.task.create.order.CreateInvoiceBasedOnOrderTask

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.