Examples of SupplierDetailFrame


Examples of org.jallinone.purchases.suppliers.client.SupplierDetailFrame

    if (!beforeInsertGrid(panel.getPricesGrid()))
      return false;
    if (gridId.equals(ApplicationConsts.ID_SUPPLIER_ITEMS_GRID.toString()) &&
        panel.getGrid().getSelectedRow()!=-1) {

      SupplierDetailFrame f = (SupplierDetailFrame)MDIFrame.getSelectedFrame();
      int[] rows = f.getItemsGrid().getSelectedRows();
      SupplierItemVO vo = null;
      ArrayList list = new ArrayList();
      for(int i=0;i<rows.length;i++) {
        vo = (SupplierItemVO)f.getItemsGrid().getVOListTableModel().getObjectForRow(rows[i]);
        list.add( vo );
      }
      new SupplierImportItemsDialog(list,this);
      return true;
    }
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.