Package org.jallinone.reports.client

Source Code of org.jallinone.reports.client.PrintInvoicesFrame_buttonPrint_actionAdapter

package org.jallinone.reports.client;


import org.openswing.swing.mdi.client.InternalFrame;
import org.openswing.swing.tree.client.*;
import java.awt.*;
import org.openswing.swing.mdi.client.MDIFrame;
import javax.swing.*;
import org.openswing.swing.client.*;
import org.openswing.swing.table.java.ServerGridDataLocator;
import org.openswing.swing.table.columns.client.*;
import org.openswing.swing.util.client.ClientSettings;
import org.openswing.swing.table.client.GridController;
import java.math.BigDecimal;
import javax.swing.border.*;
import org.openswing.swing.form.client.Form;
import org.jallinone.commons.client.CustomizedControls;
import org.openswing.swing.util.java.Consts;
import org.jallinone.commons.client.CustomizedColumns;
import org.jallinone.hierarchies.client.*;
import org.jallinone.commons.client.CompaniesComboColumn;
import org.openswing.swing.message.send.java.GridParams;
import org.openswing.swing.util.client.ClientUtils;
import org.openswing.swing.message.receive.java.Response;
import java.util.ArrayList;
import org.openswing.swing.message.receive.java.VOListResponse;
import org.openswing.swing.domains.java.*;
import org.jallinone.commons.java.ApplicationConsts;
import org.jallinone.sales.documents.java.GridSaleDocVO;
import org.jallinone.commons.client.CompaniesComboControl;
import org.openswing.swing.form.client.FormController;
import org.jallinone.ordertracking.java.OrderTrackingFilterVO;
import java.util.Calendar;
import org.openswing.swing.lookup.client.LookupController;
import org.openswing.swing.lookup.client.LookupServerDataLocator;
import java.awt.event.*;
import org.jallinone.ordertracking.java.DocumentTrackingVO;
import java.util.HashMap;
import net.sf.jasperreports.engine.JasperPrint;
import org.openswing.swing.logger.client.Logger;
import org.openswing.swing.message.receive.java.VOResponse;
import net.sf.jasperreports.engine.JRPrintPage;
import net.sf.jasperreports.engine.JasperPrintManager;


/**
* <p>Title: JAllInOne ERP/CRM application</p>
* <p>Description: Frame that shows the print invoices frame.</p>
* <p>Copyright: Copyright (C) 2006 Mauro Carniel</p>
*
* <p> This file is part of JAllInOne ERP/CRM application.
* This application is free software; you can redistribute it and/or
* modify it under the terms of the (LGPL) Lesser General Public
* License as published by the Free Software Foundation;
*
*                GNU LESSER GENERAL PUBLIC LICENSE
*                 Version 2.1, February 1999
*
* This application is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*       The author may be contacted at:
*           maurocarniel@tin.it</p>
*
* @author Mauro Carniel
* @version 1.0
*/
public class PrintInvoicesFrame extends InternalFrame {

  Form filterPanel = new Form();
  GridBagLayout gridBagLayout1 = new GridBagLayout();
  LabelControl labelSupplier = new LabelControl();
  LabelControl labelDocType = new LabelControl();
  LabelControl labelCustomer = new LabelControl();
  ComboBoxControl controlDocType = new ComboBoxControl();
  LabelControl labelDocState = new LabelControl();
  ComboBoxControl controlDocState = new ComboBoxControl();
  LabelControl labelDocDate = new LabelControl();
  DateControl controlDocDate = new DateControl();
  CodLookupControl controlCustomer = new CodLookupControl();
  CodLookupControl controlSupplier = new CodLookupControl();
  TextControl controlCustName1 = new TextControl();
  TextControl controlSupplierName1 = new TextControl();
  TextControl controlCustName2 = new TextControl();
  LookupController customerController = new LookupController();
  LookupServerDataLocator customerDataLocator = new LookupServerDataLocator();
  LookupController supplierController = new LookupController();
  LookupServerDataLocator supplierDataLocator = new LookupServerDataLocator();
  GenericButton buttonSearch = new GenericButton();
  private Domain docTypeDomain = new Domain("ALL_DOCS");

  JPanel gridPanel = new JPanel();
  GridControl grid = new GridControl();
  TextColumn colCompany = new TextColumn();
  TextColumn colCode = new TextColumn();
  TextColumn colName1 = new TextColumn();
  TextColumn colType = new TextColumn();
  IntegerColumn colYear = new IntegerColumn();
  IntegerColumn colSeq = new IntegerColumn();
  TextColumn colName2 = new TextColumn();
  ComboColumn colState = new ComboColumn();
  DateColumn colDate = new DateColumn();
  ServerGridDataLocator locator = new ServerGridDataLocator();
  LabelControl labelFrom = new LabelControl();
  DateControl controlFrom = new DateControl();
  CheckBoxColumn colSel = new CheckBoxColumn();
  GenericButton buttonPrint = new GenericButton();


  public PrintInvoicesFrame() {
    try {
      jbInit();
      setSize(750,610);
      setMinimumSize(new Dimension(750,610));
      setTitle(ClientSettings.getInstance().getResources().getResource("print invoices"));

      init();
      grid.setController(new GridController());

      MDIFrame.add(this);
    }
    catch(Exception e) {
      e.printStackTrace();
    }
  }


  private void init() {
    filterPanel.setFormController(new FormController() {


      /**
       * Callback method invoked on pressing INSERT button, after changing to insert mode.
       */
      public void afterInsertData(Form form) {
        OrderTrackingFilterVO vo = (OrderTrackingFilterVO)form.getVOModel().getValueObject();
        Calendar cal = Calendar.getInstance();
        vo.setDocYear(new BigDecimal(cal.get(cal.YEAR)));
      }

    });
    filterPanel.setMode(Consts.INSERT);


    // set combo state content...
    controlDocState.setDomainId("DOC06_STATES");

    // set combo docs content...
    docTypeDomain.addDomainPair(ApplicationConsts.SALE_INVOICE_DOC_TYPE,"sale invoice");
    docTypeDomain.addDomainPair(ApplicationConsts.SALE_INVOICE_FROM_DN_DOC_TYPE,"sale invoice from delivery notes");
    docTypeDomain.addDomainPair(ApplicationConsts.SALE_INVOICE_FROM_SD_DOC_TYPE,"sale invoice from sale document");
    docTypeDomain.addDomainPair(ApplicationConsts.SALE_CREDIT_NOTE_DOC_TYPE,"credit note");
//    docTypeDomain.addDomainPair(ApplicationConsts.SALE_GENERIC_INVOICE,"sale generic document");
    docTypeDomain.addDomainPair(ApplicationConsts.PURCHASE_INVOICE_DOC_TYPE,"purchase invoice");
    docTypeDomain.addDomainPair(ApplicationConsts.PURCHASE_INVOICE_FROM_DN_DOC_TYPE,"purchase invoice from delivery notes");
    docTypeDomain.addDomainPair(ApplicationConsts.PURCHASE_INVOICE_FROM_PD_DOC_TYPE,"purchase invoice from purchase document");
    docTypeDomain.addDomainPair(ApplicationConsts.PURCHASE_DEBIT_NOTE_DOC_TYPE,"debiting note");
//    docTypeDomain.addDomainPair(ApplicationConsts.PURCHASE_GENERIC_INVOICE,"purchase generic document");

    controlDocType.setDomain(docTypeDomain);

    // customer lookup...
    customerDataLocator.setGridMethodName("loadCustomers");
    customerDataLocator.setValidationMethodName("validateCustomerCode");

    controlCustomer.setLookupController(customerController);
    controlCustomer.setControllerMethodName("getCustomersList");
    customerController.setForm(filterPanel);
    customerController.setLookupDataLocator(customerDataLocator);
    customerController.setFrameTitle("customers");
    customerController.setLookupValueObjectClassName("org.jallinone.sales.customers.java.GridCustomerVO");
    customerController.addLookup2ParentLink("companyCodeSys01REG04", "companyCodeSYS01");
    customerController.addLookup2ParentLink("customerCodeSAL07","customerCode");
    customerController.addLookup2ParentLink("progressiveREG04","progressiveREG04");
    customerController.addLookup2ParentLink("name_1REG04", "customerName1");
    customerController.addLookup2ParentLink("name_2REG04", "customerName2");
    customerController.setAllColumnVisible(false);
    customerController.setVisibleColumn("companyCodeSys01REG04", true);
    customerController.setFilterableColumn("companyCodeSys01REG04", true);
    customerController.setFilterableColumn("customerCodeSAL07", true);
    customerController.setFilterableColumn("name_1REG04", true);
    customerController.setFilterableColumn("name_2REG04", true);
    customerController.setFilterableColumn("cityREG04", true);
    customerController.setFilterableColumn("provinceREG04", true);

    customerController.setSortableColumn("companyCodeSys01REG04", true);
    customerController.setSortableColumn("customerCodeSAL07", true);
    customerController.setSortableColumn("name_1REG04", true);
    customerController.setSortableColumn("name_2REG04", true);
    customerController.setSortableColumn("cityREG04", true);
    customerController.setSortableColumn("provinceREG04", true);

    customerController.setVisibleColumn("customerCodeSAL07", true);
    customerController.setVisibleColumn("name_1REG04", true);
    customerController.setVisibleColumn("name_2REG04", true);
    customerController.setVisibleColumn("cityREG04", true);
    customerController.setVisibleColumn("provinceREG04", true);
    customerController.setVisibleColumn("countryREG04", true);
    customerController.setVisibleColumn("taxCodeREG04", true);
    customerController.setHeaderColumnName("cityREG04", "city");
    customerController.setHeaderColumnName("provinceREG04", "prov");
    customerController.setHeaderColumnName("countryREG04", "country");
    customerController.setHeaderColumnName("taxCodeREG04", "taxCode");
    customerController.setPreferredWidthColumn("name_1REG04", 200);
    customerController.setPreferredWidthColumn("name_2REG04", 150);
    customerController.setFramePreferedSize(new Dimension(750,500));
//    customerDataLocator.getLookupFrameParams().put(ApplicationConsts.FILTER_COMPANY_FOR_INSERT,"DOC01_ORDERS");
//    customerDataLocator.getLookupValidationParameters().put(ApplicationConsts.FILTER_COMPANY_FOR_INSERT,"DOC01_ORDERS");


    // supplier lookup...
    supplierDataLocator.setGridMethodName("loadSuppliers");
    supplierDataLocator.setValidationMethodName("validateSupplierCode");

    controlSupplier.setLookupController(supplierController);
    controlSupplier.setControllerMethodName("getSuppliersList");
    supplierController.setForm(filterPanel);
    supplierController.setLookupDataLocator(supplierDataLocator);
    supplierController.setFrameTitle("suppliers");
    supplierController.setLookupValueObjectClassName("org.jallinone.purchases.suppliers.java.GridSupplierVO");
    supplierController.addLookup2ParentLink("companyCodeSys01REG04", "companyCodeSYS01");
    supplierController.addLookup2ParentLink("supplierCodePUR01","supplierCode");
    supplierController.addLookup2ParentLink("progressiveREG04","progressiveREG04");
    supplierController.addLookup2ParentLink("name_1REG04", "supplierName1");
    supplierController.setAllColumnVisible(false);
    supplierController.setVisibleColumn("companyCodeSys01REG04", true);
    supplierController.setVisibleColumn("supplierCodePUR01", true);
    supplierController.setVisibleColumn("name_1REG04", true);
    supplierController.setVisibleColumn("name_2REG04", true);
    supplierController.setVisibleColumn("cityREG04", true);
    supplierController.setVisibleColumn("provinceREG04", true);
    supplierController.setVisibleColumn("countryREG04", true);
    supplierController.setVisibleColumn("taxCodeREG04", true);
    supplierController.setHeaderColumnName("name_1REG04", "corporateName1");
    supplierController.setHeaderColumnName("cityREG04", "city");
    supplierController.setHeaderColumnName("provinceREG04", "prov");
    supplierController.setHeaderColumnName("countryREG04", "country");
    supplierController.setHeaderColumnName("taxCodeREG04", "taxCode");
    supplierController.setPreferredWidthColumn("name_1REG04", 200);
    supplierController.setPreferredWidthColumn("name_2REG04", 150);
    supplierController.setFramePreferedSize(new Dimension(750,500));
//    supplierDataLocator.getLookupFrameParams().put(ApplicationConsts.FILTER_COMPANY_FOR_INSERT,"DOC06_ORDERS");
//    supplierDataLocator.getLookupValidationParameters().put(ApplicationConsts.FILTER_COMPANY_FOR_INSERT,"DOC06_ORDERS");


  }


  /**
   * Define input controls editable settings according to the document state.
   */
  private void jbInit() {
    this.setAskBeforeClose(false);
    filterPanel.setFunctionId("PRINT_INVOICES");
    filterPanel.setVOClassName("org.jallinone.ordertracking.java.OrderTrackingFilterVO");
    filterPanel.setLayout(gridBagLayout1);
    labelSupplier.setLabel("supplierCodePUR01");
    labelDocType.setLabel("docType");
    labelCustomer.setLabel("customerCodeSAL07");
    labelDocState.setLabel("docState");
    labelDocDate.setLabel("to date");
    controlCustName2.setAttributeName("customerName2");
    controlCustName2.setEnabledOnInsert(false);
    controlCustName2.setEnabledOnEdit(false);
    controlCustName1.setAttributeName("customerName1");
    controlCustName1.setEnabledOnInsert(false);
    controlCustName1.setEnabledOnEdit(false);
    controlSupplierName1.setAttributeName("supplierName1");
    controlSupplierName1.setEnabledOnInsert(false);
    controlSupplierName1.setEnabledOnEdit(false);
    controlSupplier.setAttributeName("supplierCode");
    controlSupplier.setMaxCharacters(20);
    controlCustomer.setAttributeName("customerCode");
    controlCustomer.setMaxCharacters(20);
    controlDocType.setAttributeName("docType");
    controlDocType.setLinkLabel(labelDocType);
    controlDocType.setRequired(true);
    controlDocState.setAttributeName("docState");
    controlDocDate.setAttributeName("toDate");
    buttonSearch.addActionListener(new PrintInvoicesFrame_buttonSearch_actionAdapter(this));
    labelFrom.setLabel("from date");
    controlFrom.setAttributeName("fromDate");
    colSel.setColumnName("selected");
    colSel.setEnableInReadOnlyMode(true);
    colSel.setShowDeSelectAllInPopupMenu(true);
    colSel.setHeaderColumnName("sel.");
    colSel.setPreferredWidth(40);
    buttonPrint.addActionListener(new PrintInvoicesFrame_buttonPrint_actionAdapter(this));
    this.getContentPane().add(filterPanel, BorderLayout.NORTH);
    this.getContentPane().add(gridPanel, BorderLayout.CENTER);

    filterPanel.add(labelDocType,         new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(labelCustomer,          new GridBagConstraints(0, 2, 1, 1, 0.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(controlDocType,           new GridBagConstraints(1, 0, 1, 1, 0.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(labelSupplier,       new GridBagConstraints(0, 3, 1, 1, 0.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(controlSupplier,        new GridBagConstraints(1, 3, 1, 1, 0.0, 0.0
            ,GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(controlCustName1,         new GridBagConstraints(2, 2, 3, 1, 1.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(controlSupplierName1,        new GridBagConstraints(2, 3, 3, 1, 1.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(controlCustName2,        new GridBagConstraints(5, 2, 2, 1, 1.0, 0.0
            ,GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(buttonSearch,       new GridBagConstraints(5, 3, 1, 1, 0.0, 0.0
            ,GridBagConstraints.CENTER, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0));
    filterPanel.add(labelFrom,      new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(controlCustomer,     new GridBagConstraints(1, 2, 1, 1, 0.0, 0.0
            ,GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(labelDocDate,    new GridBagConstraints(2, 1, 1, 1, 0.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(controlDocDate,     new GridBagConstraints(3, 1, 1, 1, 0.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
    buttonSearch.setIcon(new ImageIcon(ClientUtils.getImage("examine.gif")));
    buttonPrint.setIcon(new ImageIcon(ClientUtils.getImage("printer.gif")));

    colState.setDomainId("DOC06_STATES");
    locator.setServerMethodName("loadOrderTracking");
    grid.setGridDataLocator(locator);
    grid.setAutoLoadData(false);
    grid.setValueObjectClassName("org.jallinone.ordertracking.java.DocumentTrackingVO");
    colCompany.setColumnName("companyCodeSYS01");
    colType.setColumnName("docTypeDescr");
    colType.setPreferredWidth(110);
    gridPanel.setLayout(new BorderLayout());
    colYear.setColumnName("docYear");
    colYear.setPreferredWidth(50);
    colSeq.setColumnName("docSequence");
    colSeq.setPreferredWidth(65);
    colDate.setColumnName("docDate");
    colDate.setPreferredWidth(80);
    colCode.setColumnName("customerSupplierCode");
    colCode.setPreferredWidth(80);
    colName1.setColumnName("name_1");
    colName1.setHeaderColumnName("name_1REG04");
    colName1.setPreferredWidth(150);
    colName2.setColumnName("name_2");
    colName2.setHeaderColumnName("name_2REG04");
    colName2.setPreferredWidth(120);
    colState.setColumnName("docState");
    colState.setPreferredWidth(80);
    gridPanel.add(grid, BorderLayout.CENTER);
    grid.getColumnContainer().add(colSel, null);
    grid.getColumnContainer().add(colCompany, null);
    grid.getColumnContainer().add(colType, null);
    grid.getColumnContainer().add(colYear, null);
    grid.getColumnContainer().add(colSeq, null);
    grid.getColumnContainer().add(colDate, null);
    grid.getColumnContainer().add(colCode, null);
    grid.getColumnContainer().add(colName1, null);
    //grid.getColumnContainer().add(colName2, null);
    grid.getColumnContainer().add(colState, null);
    filterPanel.add(controlFrom,    new GridBagConstraints(1, 1, 1, 1, 0.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(labelDocState,   new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(controlDocState,  new GridBagConstraints(3, 0, 1, 1, 1.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 5, 5, 5), 0, 0));
    filterPanel.add(buttonPrint,   new GridBagConstraints(6, 3, 1, 1, 0.0, 0.0
            ,GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(5, 5, 5, 5), 0, 0));
  }


  void buttonSearch_actionPerformed(ActionEvent e) {
    if (filterPanel.push()) {
      grid.getOtherGridParams().put(ApplicationConsts.PROPERTIES_FILTER,filterPanel.getVOModel().getValueObject());
      grid.reloadData();
    }
  }

  void buttonPrint_actionPerformed(ActionEvent e) {
    try {

      ArrayList pks = new ArrayList();

      DocumentTrackingVO vo = null;
      for(int i=0;i<grid.getVOListTableModel().getRowCount();i++) {
        vo = (DocumentTrackingVO)grid.getVOListTableModel().getObjectForRow(i);
        if (vo.isSelected())
          pks.add(vo);
      }

      if (pks.size()==0) {
        OptionPane.showMessageDialog(
          MDIFrame.getInstance(),
          "you have to select at least one row",
          "attention",
          JOptionPane.WARNING_MESSAGE
        );
        return;
      }
      else {

        // print multiple invoices...
        org.openswing.swing.internationalization.java.Resources res = ClientSettings.getInstance().getResources();
        HashMap params = new HashMap();
        HashMap map = new HashMap();
        String docTypeDescr = null;
        Response response = null;
        JasperPrint jp = null;
        JasperPrint print = null;
        for(int i=0;i<pks.size();i++) {
          vo = (DocumentTrackingVO)pks.get(i);

          docTypeDescr = vo.getDocTypeDescr();
          params.clear();
          map.clear();

          params.put("COMPANY_CODE",vo.getCompanyCodeSYS01());
          params.put("DOC_TYPE",vo.getDocType());
          params.put("DOC_YEAR",vo.getDocYear());
          params.put("DOC_NUMBER",vo.getDocNumber());
          map.put(ApplicationConsts.COMPANY_CODE_SYS01,vo.getCompanyCodeSYS01());
          map.put(ApplicationConsts.EXPORT_PARAMS,params);

          if (docTypeDescr.equals(res.getResource("purchase invoice")) ||
              docTypeDescr.equals(res.getResource("purchase invoice from delivery notes")) ||
              docTypeDescr.equals(res.getResource("purchase invoice from purchase document")) ||
              docTypeDescr.equals(res.getResource("debiting note")) ||
              docTypeDescr.equals(res.getResource("purchase generic document"))) {

            map.put(ApplicationConsts.FUNCTION_CODE_SYS06,"DOC06_INV");
          }
          else if (docTypeDescr.equals(res.getResource("sale invoice")) ||
                   docTypeDescr.equals(res.getResource("sale invoice from delivery notes")) ||
                   docTypeDescr.equals(res.getResource("sale invoice from sale document")) ||
                   docTypeDescr.equals(res.getResource("credit note")) ||
                   docTypeDescr.equals(res.getResource("sale generic document"))) {

            map.put(ApplicationConsts.FUNCTION_CODE_SYS06,"DOC01_INV");
          }

          response = ClientUtils.getData("getJasperReport",map);
          if (!response.isError()) {
            print = (JasperPrint)((VOResponse)response).getVo();
            if (jp==null)
              jp = print;
            else {
              java.util.List pages = print.getPages();
              for(int k=0;k<pages.size();k++)
                jp.addPage((JRPrintPage)pages.get(k));
            }
          } else JOptionPane.showMessageDialog(
              ClientUtils.getParentFrame(this),
              response.getErrorMessage(),
              ClientSettings.getInstance().getResources().getResource("print document"),
              JOptionPane.ERROR_MESSAGE
            );

       } // end for on selected invoices...

       if (jp!=null)
         JasperPrintManager.printReport(jp,true);

      }
    }
    catch (Throwable t) {
      Logger.error(this.getClass().getName(),"buttonPrint_actionPerformed",t.getMessage(),t);
    }
  }




}

class PrintInvoicesFrame_buttonSearch_actionAdapter implements java.awt.event.ActionListener {
  PrintInvoicesFrame adaptee;

  PrintInvoicesFrame_buttonSearch_actionAdapter(PrintInvoicesFrame adaptee) {
    this.adaptee = adaptee;
  }
  public void actionPerformed(ActionEvent e) {
    adaptee.buttonSearch_actionPerformed(e);
  }
}

class PrintInvoicesFrame_buttonPrint_actionAdapter implements java.awt.event.ActionListener {
  PrintInvoicesFrame adaptee;

  PrintInvoicesFrame_buttonPrint_actionAdapter(PrintInvoicesFrame adaptee) {
    this.adaptee = adaptee;
  }
  public void actionPerformed(ActionEvent e) {
    adaptee.buttonPrint_actionPerformed(e);
  }
}
TOP

Related Classes of org.jallinone.reports.client.PrintInvoicesFrame_buttonPrint_actionAdapter

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.