Package org.jabusuite.webclient.windows

Examples of org.jabusuite.webclient.windows.JbsOptionPane


    protected void createInvoice() {
        try {
            final Invoice invoice = new Invoice();
            String userNumber = getNextUserNumber(Invoice.class);
            invoice.setDataFromTransaction(this.getDeliveryNote(), userNumber);
            JbsOptionPane dialog = JbsOptionPane.showMessageDialog(this, JbsL10N.getString("DeliveryNote.msgToInvoice"), JbsL10N.getString("Offer.messageBoxTitle"), JbsOptionPane.INFORMATION_MESSAGE);
            dialog.addActionListener(new ActionListener() {

                public void actionPerformed(ActionEvent arg0) {
                    FmInvoiceEdit fmInvoiceEdit = new FmInvoiceEdit();
                    fmInvoiceEdit.showForm(DlgState.dsCopy, invoice);
                    addAction(PnDeliveryNoteEdit.ACTION_TOINVOICE);
View Full Code Here

TOP

Related Classes of org.jabusuite.webclient.windows.JbsOptionPane

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.