// Openbravo POS is a point of sales application designed for touch screens.
// Copyright (C) 2007-2009 Openbravo, S.L.
// http://code.google.com/p/openbravocustom/
//
// This file is part of Openbravo POS.
//
// Openbravo POS 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.
//
// Openbravo POS 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 Openbravo POS. If not, see <http://www.gnu.org/licenses/>.
package com.openbravo.pos.reports;
import com.openbravo.pos.forms.AppView;
import java.awt.Component;
import java.util.Date;
import com.openbravo.beans.JCalendarDialog;
import com.openbravo.pos.forms.AppLocal;
import com.openbravo.data.loader.QBFCompareEnum;
import com.openbravo.format.Formats;
import com.openbravo.basic.BasicException;
import com.openbravo.data.loader.Datas;
import com.openbravo.data.loader.SerializerWrite;
import com.openbravo.data.loader.SerializerWriteBasic;
import java.util.Calendar;
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));
}
public void init(AppView app) {
}
public void activate() throws BasicException {
}
public SerializerWrite getSerializerWrite() {
return new SerializerWriteBasic(new Datas[] {Datas.OBJECT, Datas.TIMESTAMP, Datas.OBJECT, Datas.TIMESTAMP});
}
public Component getComponent() {
return this;
}
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();
jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
jButton3 = new javax.swing.JButton();
setBorder(javax.swing.BorderFactory.createTitledBorder(AppLocal.getIntString("label.bydates"))); // NOI18N
setPreferredSize(new java.awt.Dimension(0, 100));
setLayout(null);
jLabel1.setText(AppLocal.getIntString("Label.StartDate")); // NOI18N
add(jLabel1);
jLabel1.setBounds(20, 20, 120, 16);
add(jTxtStartDate);
jTxtStartDate.setBounds(130, 20, 200, 28);
jLabel2.setText(AppLocal.getIntString("Label.EndDate")); // NOI18N
add(jLabel2);
jLabel2.setBounds(20, 50, 120, 16);
add(jTxtEndDate);
jTxtEndDate.setBounds(130, 50, 200, 28);
btnDateStart.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/openbravo/images/date.png"))); // NOI18N
btnDateStart.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnDateStartActionPerformed(evt);
}
});
add(btnDateStart);
btnDateStart.setBounds(340, 20, 32, 28);
btnDateEnd.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/openbravo/images/date.png"))); // NOI18N
btnDateEnd.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnDateEndActionPerformed(evt);
}
});
add(btnDateEnd);
btnDateEnd.setBounds(340, 50, 32, 28);
jButton1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/openbravo/images/1rightarrow.png"))); // NOI18N
jButton1.setMaximumSize(new java.awt.Dimension(69, 26));
jButton1.setMinimumSize(new java.awt.Dimension(69, 26));
jButton1.setPreferredSize(new java.awt.Dimension(69, 26));
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
add(jButton1);
jButton1.setBounds(550, 20, 40, 60);
jButton1.getAccessibleContext().setAccessibleName("jTomorrow");
jButton2.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/openbravo/images/1leftarrow.png"))); // NOI18N
jButton2.setMaximumSize(new java.awt.Dimension(69, 26));
jButton2.setMinimumSize(new java.awt.Dimension(69, 26));
jButton2.setPreferredSize(new java.awt.Dimension(69, 26));
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jYesterdayActionPerformed(evt);
}
});
add(jButton2);
jButton2.setBounds(410, 20, 40, 60);
jButton2.getAccessibleContext().setAccessibleName("jYesterday");
jButton3.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/openbravo/images/1day.png"))); // NOI18N
jButton3.setText("Today");
jButton3.setMaximumSize(new java.awt.Dimension(69, 26));
jButton3.setMinimumSize(new java.awt.Dimension(69, 26));
jButton3.setPreferredSize(new java.awt.Dimension(69, 26));
jButton3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton3ActionPerformed(evt);
}
});
add(jButton3);
jButton3.setBounds(460, 20, 80, 60);
jButton3.getAccessibleContext().setAccessibleName("jToday");
}// </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
private Date getDateForSelection (int daysToAdd, Date date) {
Date newDate;
if (date == null) {
newDate = new Date();
} else {
newDate = date;
}
Calendar cal = Calendar.getInstance();
cal.setTime(new Date(newDate.getYear(), newDate.getMonth(), newDate.getDate()));
cal.add(Calendar.DATE, daysToAdd);
// SKIP SUNDAYS ?
// if (cal.DAY_OF_WEEK == cal.SUNDAY) {
// cal.add(Calendar.DATE, daysToAdd);
// }
return cal.getTime();
}
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
Date date;
try {
date = (Date) Formats.TIMESTAMP.parseValue(jTxtStartDate.getText());
} catch (BasicException e) {
date = null;
}
setStartDate(getDateForSelection(1, date));
setEndDate(getDateForSelection(2, date));
}//GEN-LAST:event_jButton1ActionPerformed
private void jYesterdayActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jYesterdayActionPerformed
Date date;
try {
date = (Date) Formats.TIMESTAMP.parseValue(jTxtStartDate.getText());
} catch (BasicException e) {
date = null;
}
setStartDate(getDateForSelection(-1, date));
setEndDate(getDateForSelection(0, date));
}//GEN-LAST:event_jYesterdayActionPerformed
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton3ActionPerformed
setStartDate(getDateForSelection(0, null));
setEndDate(getDateForSelection(1, null));
}//GEN-LAST:event_jButton3ActionPerformed
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton btnDateEnd;
private javax.swing.JButton btnDateStart;
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton3;
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
}