// 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.reports; import com.openbravo.basic.BasicException; import com.openbravo.data.gui.ComboBoxValModel; import com.openbravo.data.loader.*; import com.openbravo.pos.forms.AppLocal; import com.openbravo.pos.forms.AppView; import com.openbravo.pos.forms.DataLogicSales; import java.awt.Component; import java.awt.event.ActionListener; import java.util.List; /** * * @author adrianromero */ public class JParamsLocation extends javax.swing.JPanel implements ReportEditorCreator { private SentenceList m_sentlocations; private ComboBoxValModel m_LocationsModel; /** Creates new form JParamsLocation */ public JParamsLocation() { initComponents(); } @Override public void init(AppView app) { DataLogicSales dlSales = (DataLogicSales) app.getBean("com.openbravo.pos.forms.DataLogicSales"); // El modelo de locales m_sentlocations = dlSales.getLocationsList(); m_LocationsModel = new ComboBoxValModel(); } @Override public void activate() throws BasicException { List a = m_sentlocations.list(); addFirst(a); m_LocationsModel = new ComboBoxValModel(a); m_LocationsModel.setSelectedFirst(); m_jLocation.setModel(m_LocationsModel); // refresh model } @Override public SerializerWrite getSerializerWrite() { return new SerializerWriteBasic(new Datas[] {Datas.OBJECT, Datas.STRING}); } @Override public Component getComponent() { return this; } protected void addFirst(List a) { // do nothing } public void addActionListener(ActionListener l) { m_jLocation.addActionListener(l); } public void removeActionListener(ActionListener l) { m_jLocation.removeActionListener(l); } @Override public Object createValue() throws BasicException { return new Object[] { m_LocationsModel.getSelectedKey() == null ? QBFCompareEnum.COMP_NONE : QBFCompareEnum.COMP_EQUALS, m_LocationsModel.getSelectedKey() }; } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { m_jLocation = new javax.swing.JComboBox(); jLabel8 = new javax.swing.JLabel(); setBorder(javax.swing.BorderFactory.createTitledBorder(AppLocal.getIntString("label.bywarehouse"))); // NOI18N setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N m_jLocation.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N jLabel8.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N jLabel8.setText(AppLocal.getIntString("label.warehouse")); // NOI18N javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this); this.setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jLabel8, javax.swing.GroupLayout.PREFERRED_SIZE, 110, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(m_jLocation, javax.swing.GroupLayout.PREFERRED_SIZE, 220, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel8, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(m_jLocation, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)) .addContainerGap(13, Short.MAX_VALUE)) ); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel jLabel8; private javax.swing.JComboBox m_jLocation; // End of variables declaration//GEN-END:variables }