243 lines
10 KiB
Java
243 lines
10 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.beans.JCalendarDialog;
|
||
|
|
import com.unicenta.data.loader.Datas;
|
||
|
|
import com.unicenta.data.loader.QBFCompareEnum;
|
||
|
|
import com.unicenta.data.loader.SerializerWrite;
|
||
|
|
import com.unicenta.data.loader.SerializerWriteBasic;
|
||
|
|
import com.unicenta.format.Formats;
|
||
|
|
import com.unicenta.pos.forms.AppLocal;
|
||
|
|
import com.unicenta.pos.forms.AppView;
|
||
|
|
import java.awt.Component;
|
||
|
|
import java.util.Date;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @author JG uniCenta
|
||
|
|
*/
|
||
|
|
public class JParamsDatesInterval extends javax.swing.JPanel implements ReportEditorCreator {
|
||
|
|
|
||
|
|
/** Creates new form JParamsClosedPos */
|
||
|
|
public JParamsDatesInterval() {
|
||
|
|
initComponents();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @param d
|
||
|
|
*/
|
||
|
|
public void setStartDate(Date d) {
|
||
|
|
jTxtStartDate.setText(Formats.TIMESTAMP.formatValue(d));
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @param d
|
||
|
|
*/
|
||
|
|
public void setEndDate(Date d) {
|
||
|
|
jTxtEndDate.setText(Formats.TIMESTAMP.formatValue(d));
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @param app
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public void init(AppView app) {
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @throws BasicException
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public void activate() throws BasicException {
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public SerializerWrite getSerializerWrite() {
|
||
|
|
return new SerializerWriteBasic(new Datas[] {Datas.OBJECT, Datas.TIMESTAMP, Datas.OBJECT, Datas.TIMESTAMP});
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@Override
|
||
|
|
public Component getComponent() {
|
||
|
|
return this;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @return
|
||
|
|
* @throws BasicException
|
||
|
|
*/
|
||
|
|
@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();
|
||
|
|
|
||
|
|
setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N
|
||
|
|
setPreferredSize(new java.awt.Dimension(750, 50));
|
||
|
|
|
||
|
|
jLabel1.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N
|
||
|
|
jLabel1.setText(AppLocal.getIntString("label.StartDate")); // NOI18N
|
||
|
|
jLabel1.setPreferredSize(new java.awt.Dimension(110, 30));
|
||
|
|
|
||
|
|
jTxtStartDate.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N
|
||
|
|
jTxtStartDate.setPreferredSize(new java.awt.Dimension(160, 30));
|
||
|
|
|
||
|
|
jLabel2.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N
|
||
|
|
jLabel2.setText(AppLocal.getIntString("label.EndDate")); // NOI18N
|
||
|
|
jLabel2.setPreferredSize(new java.awt.Dimension(110, 30));
|
||
|
|
|
||
|
|
jTxtEndDate.setFont(new java.awt.Font("Arial", 0, 14)); // NOI18N
|
||
|
|
jTxtEndDate.setPreferredSize(new java.awt.Dimension(160, 30));
|
||
|
|
|
||
|
|
btnDateStart.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/unicenta/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(80, 45));
|
||
|
|
btnDateStart.addActionListener(new java.awt.event.ActionListener() {
|
||
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||
|
|
btnDateStartActionPerformed(evt);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
btnDateEnd.setIcon(new javax.swing.ImageIcon(getClass().getResource("/com/unicenta/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(80, 45));
|
||
|
|
btnDateEnd.addActionListener(new java.awt.event.ActionListener() {
|
||
|
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||
|
|
btnDateEndActionPerformed(evt);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
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(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||
|
|
.addComponent(jTxtStartDate, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||
|
|
.addComponent(btnDateStart, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
||
|
|
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||
|
|
.addComponent(jTxtEndDate, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||
|
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||
|
|
.addComponent(btnDateEnd, 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(layout.createSequentialGroup()
|
||
|
|
.addContainerGap()
|
||
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
|
||
|
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
||
|
|
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||
|
|
.addComponent(jTxtEndDate, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||
|
|
.addComponent(btnDateStart, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)
|
||
|
|
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
||
|
|
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||
|
|
.addComponent(jTxtStartDate, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||
|
|
.addComponent(btnDateEnd, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE))
|
||
|
|
.addContainerGap())
|
||
|
|
);
|
||
|
|
}// </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
|
||
|
|
|
||
|
|
}
|
||
|
|
|