Package org.jabusuite.webclient.reporting

Examples of org.jabusuite.webclient.reporting.FmJbsReportOptions.addActionListener()


        }
    }
   
    protected void printUnprinted(final DunningsPrinter dunningsPrinter) {
        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());
View Full Code Here


        }
    }
   
    protected void printSingleDunning() {
        final FmJbsReportOptions fmReportOptions = new FmJbsReportOptions("dunning");
        fmReportOptions.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent arg0) {
                if (arg0.getActionCommand().equals(JbsDialogWindowOKCancel.ACTION_OK)) {
                    printSingleDunning(fmReportOptions.getSelectedPageTemplate(), fmReportOptions.getSelectedReportTemplate());
                }
View Full Code Here

   
    protected void printLetters() {
        final LetterPrinter letterPrinter = new LetterPrinter(((MassLetterWizard)this.getWizard()).getLetterTemplate(), ((MassLetterWizard)this.getWizard()).getCreatedLetters(), ClientGlobals.getUser(), ClientGlobals.getCompany());

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

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

        return "transaction";
    }
   
    protected void printTransaction() {
        final FmJbsReportOptions fmReportOptions = new FmJbsReportOptions(this.getReportTypeId());
        fmReportOptions.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent arg0) {
                if (arg0.getActionCommand().equals(JbsDialogWindowOKCancel.ACTION_OK)) {
                    //getControlData();
                    printTransaction(fmReportOptions.getSelectedPageTemplate(), fmReportOptions.getSelectedReportTemplate());
View Full Code Here

    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());
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.