// 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.beans.JCalendarDialog; import com.openbravo.data.loader.Datas; import com.openbravo.data.loader.QBFCompareEnum; import com.openbravo.data.loader.SerializerWrite; import com.openbravo.data.loader.SerializerWriteBasic; import com.openbravo.format.Formats; import com.openbravo.pos.forms.AppLocal; import com.openbravo.pos.forms.AppView; import java.awt.Component; import java.util.Date; public class JParamsDatesInterval extends javax.swing.JPanel implements ReportEditorCreator { /** Creates new form JParamsClosedPos */ public JParamsDatesInterval() { initComponents(); } public void setStartDate(Date d) { jTxtStartDate.setText(Formats.TIMESTAMP.formatValue(d)); } public void setEndDate(Date d) { jTxtEndDate.setText(Formats.TIMESTAMP.formatValue(d)); } @Override public void init(AppView app) { } @Override public void activate() throws BasicException { } @Override public SerializerWrite getSerializerWrite() { return new SerializerWriteBasic(new Datas[] {Datas.OBJECT, Datas.TIMESTAMP, Datas.OBJECT, Datas.TIMESTAMP}); } @Override public Component getComponent() { return this; } @Override public Object createValue() throws BasicException { Object startdate = Formats.TIMESTAMP.parseValue(jTxtStartDate.getText()); Object enddate = Formats.TIMESTAMP.parseValue(jTxtEndDate.getText()); return new Object[] { startdate == null ? QBFCompareEnum.COMP_NONE : QBFCompareEnum.COMP_GREATEROREQUALS, startdate, enddate == null ? QBFCompareEnum.COMP_NONE : QBFCompareEnum.COMP_LESS, enddate }; } /** 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() { jLabel1 = new javax.swing.JLabel(); jTxtStartDate = new javax.swing.JTextField(); jLabel2 = new javax.swing.JLabel(); jTxtEndDate = new javax.swing.JTextField(); btnDateStart = new javax.swing.JButton(); btnDateEnd = new javax.swing.JButton(); setBorder(javax.swing.BorderFactory.createTitledBorder(AppLocal.getIntString("label.bydates"))); // NOI18N setPreferredSize(new java.awt.Dimension(0, 100)); setLayout(null); jLabel1.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N jLabel1.setText(AppLocal.getIntString("Label.StartDate")); // NOI18N add(jLabel1); jLabel1.setBounds(20, 20, 80, 25); jTxtStartDate.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N add(jTxtStartDate); jTxtStartDate.setBounds(100, 20, 130, 25); jLabel2.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N jLabel2.setText(AppLocal.getIntString("Label.EndDate")); // NOI18N add(jLabel2); jLabel2.setBounds(300, 20, 80, 25); jTxtEndDate.setFont(new java.awt.Font("Arial", 0, 12)); // NOI18N add(jTxtEndDate); jTxtEndDate.setBounds(380, 20, 140, 25); btnDateStart.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/openbravo/images/date.png"))); // NOI18N btnDateStart.setToolTipText("Open Calendar"); btnDateStart.setMaximumSize(new java.awt.Dimension(40, 33)); btnDateStart.setMinimumSize(new java.awt.Dimension(40, 33)); btnDateStart.setPreferredSize(new java.awt.Dimension(40, 33)); btnDateStart.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btnDateStartActionPerformed(evt); } }); add(btnDateStart); btnDateStart.setBounds(240, 20, 40, 33); btnDateEnd.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/openbravo/images/date.png"))); // NOI18N btnDateEnd.setToolTipText("Open Calendar"); btnDateEnd.setMaximumSize(new java.awt.Dimension(40, 33)); btnDateEnd.setMinimumSize(new java.awt.Dimension(40, 33)); btnDateEnd.setPreferredSize(new java.awt.Dimension(40, 33)); btnDateEnd.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btnDateEndActionPerformed(evt); } }); add(btnDateEnd); btnDateEnd.setBounds(530, 20, 40, 33); }// </editor-fold>//GEN-END:initComponents private void btnDateStartActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnDateStartActionPerformed Date date; try { date = (Date) Formats.TIMESTAMP.parseValue(jTxtStartDate.getText()); } catch (BasicException e) { date = null; } date = JCalendarDialog.showCalendarTimeHours(this, date); if (date != null) { jTxtStartDate.setText(Formats.TIMESTAMP.formatValue(date)); } }//GEN-LAST:event_btnDateStartActionPerformed private void btnDateEndActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnDateEndActionPerformed Date date; try { date = (Date) Formats.TIMESTAMP.parseValue(jTxtEndDate.getText()); } catch (BasicException e) { date = null; } date = JCalendarDialog.showCalendarTimeHours(this, date); if (date != null) { jTxtEndDate.setText(Formats.TIMESTAMP.formatValue(date)); } }//GEN-LAST:event_btnDateEndActionPerformed // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton btnDateEnd; private javax.swing.JButton btnDateStart; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel2; private javax.swing.JTextField jTxtEndDate; private javax.swing.JTextField jTxtStartDate; // End of variables declaration//GEN-END:variables }