Package org.jabusuite.webclient.accounting.dunning

Examples of org.jabusuite.webclient.accounting.dunning.DunningsPrinter


        this.getColMain().add(btnPrint);
    }
   
    protected void printDunnings() {
        if ((this.getDunningWizard().getCreatedDunnings()!=null) && (this.getDunningWizard().getCreatedDunnings().size()>0)) {
            final DunningsPrinter dunningsPrinter = new DunningsPrinter(this.getDunningWizard().getCreatedDunnings(),ClientGlobals.getUser(), ClientGlobals.getCompany());

            final FmJbsReportOptions fmReportOptions = new FmJbsReportOptions("dunning");
            fmReportOptions.addActionListener(new ActionListener() {

                public void actionPerformed(ActionEvent arg0) {
                    if (arg0.getActionCommand().equals(JbsDialogWindowOKCancel.ACTION_OK)) {
                        dunningsPrinter.setPageTemplate(fmReportOptions.getSelectedPageTemplate());
                        dunningsPrinter.setReportTemplate(fmReportOptions.getSelectedReportTemplate());
                        doPrintDunnings(dunningsPrinter);
                    }
                }
            });
            fmReportOptions.showForm();
View Full Code Here

TOP

Related Classes of org.jabusuite.webclient.accounting.dunning.DunningsPrinter

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.