// uniCenta oPOS - Touch Friendly Point Of Sale // Copyright (c) 2009-2013 uniCenta & previous Openbravo POS works // http://www.unicenta.net/unicentaopos // // This file is part of uniCenta oPOS // // uniCenta oPOS is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // uniCenta oPOS 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 General Public License for more details. // // You should have received a copy of the GNU General Public License // along with uniCenta oPOS. If not, see <http://www.gnu.org/licenses/>. package com.openbravo.pos.inventory; import com.openbravo.basic.BasicException; import com.openbravo.data.user.EditorListener; import com.openbravo.data.user.EditorRecord; import com.openbravo.data.user.ListProviderCreator; import com.openbravo.data.user.SaveProvider; import com.openbravo.pos.forms.AppLocal; import com.openbravo.pos.forms.DataLogicSales; import com.openbravo.pos.panels.JPanelTable2; import com.openbravo.pos.ticket.ProductFilter; import java.awt.Component; import javax.swing.JButton; /** * * @author adrianromero * Created on 1 de marzo de 2007, 22:15 * */ public class ProductsPanel extends JPanelTable2 implements EditorListener { private ProductsEditor jeditor; private ProductFilter jproductfilter; private DataLogicSales m_dlSales = null; /** Creates a new instance of ProductsPanel2 */ public ProductsPanel() { } @Override protected void init() { m_dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales"); // el panel del filtro jproductfilter = new ProductFilter(); jproductfilter.init(app); row = m_dlSales.getProductsRow(); lpr = new ListProviderCreator(m_dlSales.getProductCatQBF(), jproductfilter); spr = new SaveProvider( m_dlSales.getProductCatUpdate(), m_dlSales.getProductCatInsert(), m_dlSales.getProductCatDelete()); // el panel del editor jeditor = new ProductsEditor(m_dlSales, dirty); } @Override public EditorRecord getEditor() { return jeditor; } @Override public Component getFilter() { return jproductfilter.getComponent(); } @Override public Component getToolbarExtras() { JButton btnScanPal = new JButton(); btnScanPal.setText("ScanPal"); btnScanPal.setVisible(app.getDeviceScanner() != null); btnScanPal.addActionListener(new java.awt.event.ActionListener() { @Override public void actionPerformed(java.awt.event.ActionEvent evt) { btnScanPalActionPerformed(evt); } }); return btnScanPal; } private void btnScanPalActionPerformed(java.awt.event.ActionEvent evt) { JDlgUploadProducts.showMessage(this, app.getDeviceScanner(), bd); } @Override public String getTitle() { return AppLocal.getIntString("Menu.Products"); } @Override public void activate() throws BasicException { jeditor.activate(); jproductfilter.activate(); super.activate(); } @Override public void updateValue(Object value) { } }