// Openbravo POS is a point of sales application designed for touch screens.
// Copyright (C) 2008-2009 Openbravo, S.L.
// http://www.openbravo.com/product/pos
//
// 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.payment;
import java.awt.Component;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import com.openbravo.format.Formats;
import com.openbravo.pos.customers.CustomerInfoExt;
import com.openbravo.pos.forms.AppLocal;
import com.openbravo.pos.util.RoundUtils;
public class JPaymentPaper extends javax.swing.JPanel implements JPaymentInterface {
private JPaymentNotifier m_notifier;
private double m_dTicket;
private double m_dTotal;
private String m_sPaper; // "paperin", "paperout"
// private String m_sCustomer;
/** Creates new form JPaymentTicket */
public JPaymentPaper(JPaymentNotifier notifier, String sPaper) {
m_notifier = notifier;
m_sPaper = sPaper;
initComponents();
m_jTendered.addPropertyChangeListener("Edition", new RecalculateState());
m_jTendered.addEditorKeys(m_jKeys);
}
public void activate(PaymentInfoList paymentInfoList, CustomerInfoExt customerext, double dTotal, String transID) {
m_dTotal = dTotal;
m_jTendered.reset();
m_jTendered.activate();
printState();
}
public Component getComponent() {
return this;
}
public PaymentInfo executePayment() {
return new PaymentInfoTicket(m_dTicket, m_sPaper);
}
private void printState() {
Double value = m_jTendered.getDoubleValue();
if (value == null) {
m_dTicket = 0.0;
} else {
m_dTicket = value;
}
m_jMoneyEuros.setText(Formats.CURRENCY.formatValue(new Double(m_dTicket)));
int iCompare = RoundUtils.compare(m_dTicket, m_dTotal);
// it is allowed to pay more
m_notifier.setStatus(m_dTicket > 0.0, iCompare >= 0);
}
private class RecalculateState implements PropertyChangeListener {
public void propertyChange(PropertyChangeEvent evt) {
printState();
}
}
/** 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() {
jPanel4 = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
m_jMoneyEuros = new javax.swing.JLabel();
jPanel11 = new javax.swing.JPanel();
jPanel12 = new javax.swing.JPanel();
m_jKeys = new com.openbravo.editor.JEditorKeys();
jPanel1 = new javax.swing.JPanel();
m_jTendered = new com.openbravo.editor.JEditorCurrencyPositive();
setLayout(new java.awt.BorderLayout());
jPanel4.setLayout(null);
jLabel1.setText(AppLocal.getIntString("Label.InputCash")); // NOI18N
jPanel4.add(jLabel1);
jLabel1.setBounds(20, 20, 100, 15);
m_jMoneyEuros.setBackground(new java.awt.Color(153, 153, 255));
m_jMoneyEuros.setHorizontalAlignment(javax.swing.SwingConstants.RIGHT);
m_jMoneyEuros.setBorder(javax.swing.BorderFactory.createCompoundBorder(javax.swing.BorderFactory.createLineBorder(javax.swing.UIManager.getDefaults().getColor("Button.darkShadow")), javax.swing.BorderFactory.createEmptyBorder(1, 4, 1, 4)));
m_jMoneyEuros.setOpaque(true);
m_jMoneyEuros.setPreferredSize(new java.awt.Dimension(150, 25));
jPanel4.add(m_jMoneyEuros);
m_jMoneyEuros.setBounds(120, 20, 150, 25);
add(jPanel4, java.awt.BorderLayout.CENTER);
jPanel11.setLayout(new java.awt.BorderLayout());
jPanel12.setLayout(new javax.swing.BoxLayout(jPanel12, javax.swing.BoxLayout.Y_AXIS));
jPanel12.add(m_jKeys);
jPanel1.setBorder(javax.swing.BorderFactory.createEmptyBorder(5, 5, 5, 5));
jPanel1.setLayout(new java.awt.BorderLayout());
jPanel1.add(m_jTendered, java.awt.BorderLayout.CENTER);
jPanel12.add(jPanel1);
jPanel11.add(jPanel12, java.awt.BorderLayout.NORTH);
add(jPanel11, java.awt.BorderLayout.EAST);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JLabel jLabel1;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel11;
private javax.swing.JPanel jPanel12;
private javax.swing.JPanel jPanel4;
private com.openbravo.editor.JEditorKeys m_jKeys;
private javax.swing.JLabel m_jMoneyEuros;
private com.openbravo.editor.JEditorCurrencyPositive m_jTendered;
// End of variables declaration//GEN-END:variables
}