180 lines
6.0 KiB
Java
180 lines
6.0 KiB
Java
|
|
// uniCenta oPOS - Touch Friendly Point Of Sale
|
||
|
|
// Copyright (c) 2009-2018 uniCenta & previous Openbravo POS works
|
||
|
|
// https://unicenta.com
|
||
|
|
//
|
||
|
|
// 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.unicenta.pos.reports;
|
||
|
|
|
||
|
|
import com.unicenta.basic.BasicException;
|
||
|
|
import com.unicenta.data.gui.ComboBoxValModel;
|
||
|
|
import com.unicenta.data.loader.*;
|
||
|
|
import com.unicenta.pos.forms.AppLocal;
|
||
|
|
import com.unicenta.pos.forms.AppView;
|
||
|
|
import com.unicenta.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();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @param app
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public void init(AppView app) {
|
||
|
|
|
||
|
|
DataLogicSales dlSales = (DataLogicSales) app.getBean("com.unicenta.pos.forms.DataLogicSales");
|
||
|
|
|
||
|
|
// El modelo de locales
|
||
|
|
m_sentlocations = dlSales.getLocationsList();
|
||
|
|
m_LocationsModel = new ComboBoxValModel();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @throws BasicException
|
||
|
|
*/
|
||
|
|
@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
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public SerializerWrite getSerializerWrite() {
|
||
|
|
return new SerializerWriteBasic(new Datas[] {Datas.OBJECT, Datas.STRING});
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public Component getComponent() {
|
||
|
|
return this;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @param a
|
||
|
|
*/
|
||
|
|
protected void addFirst(List a) {
|
||
|
|
a.add(0, null);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @param l
|
||
|
|
*/
|
||
|
|
public void addActionListener(ActionListener l) {
|
||
|
|
m_jLocation.addActionListener(l);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @param l
|
||
|
|
*/
|
||
|
|
public void removeActionListener(ActionListener l) {
|
||
|
|
m_jLocation.removeActionListener(l);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
* @throws BasicException
|
||
|
|
*/
|
||
|
|
@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();
|
||
|
|
|
||
|
|
setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N
|
||
|
|
setPreferredSize(new java.awt.Dimension(384, 50));
|
||
|
|
|
||
|
|
m_jLocation.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N
|
||
|
|
m_jLocation.setPreferredSize(new java.awt.Dimension(250, 30));
|
||
|
|
|
||
|
|
jLabel8.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N
|
||
|
|
jLabel8.setText(AppLocal.getIntString("label.warehouse")); // NOI18N
|
||
|
|
jLabel8.setPreferredSize(new java.awt.Dimension(110, 30));
|
||
|
|
|
||
|
|
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, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||
|
|
.addComponent(m_jLocation, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||
|
|
.addContainerGap())
|
||
|
|
);
|
||
|
|
layout.setVerticalGroup(
|
||
|
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||
|
|
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
||
|
|
.addGap(11, 11, 11)
|
||
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
||
|
|
.addComponent(jLabel8, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||
|
|
.addComponent(m_jLocation, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||
|
|
.addContainerGap())
|
||
|
|
);
|
||
|
|
}// </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
|
||
|
|
|
||
|
|
}
|