// GreenPOS 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 GreenPOS.
//
// GreenPOS 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.
//
// GreenPOS 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 GreenPOS. If not, see <http://www.gnu.org/licenses/>.
package com.openbravo.pos.payment;
import java.awt.*;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import com.openbravo.data.gui.MessageInf;
import com.openbravo.pos.forms.AppLocal;
import com.openbravo.format.Formats;
import com.openbravo.pos.customers.CustomerInfoExt;
import com.openbravo.pos.forms.AppView;
import com.openbravo.pos.forms.DataLogicSystem;
import com.openbravo.pos.scripting.ScriptEngine;
import com.openbravo.pos.scripting.ScriptException;
import com.openbravo.pos.scripting.ScriptFactory;
import com.openbravo.pos.util.RoundUtils;
import com.openbravo.pos.util.ThumbNailBuilder;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.SwingConstants;
/**
*
* @author adrianromero
*/
public class JPaymentMagcardCredit extends javax.swing.JPanel implements JPaymentInterface {
private JPaymentNotifier m_notifier;
private double m_dPaid;
private double m_dTotal;
private PaymentPanel m_cardpanel;
private PaymentGateway m_paymentgateway;
private String transaction;
/** Creates new form JPaymentCash */
public JPaymentMagcardCredit(AppView app, JPaymentNotifier notifier, DataLogicSystem dlSystem) {
m_notifier = notifier;
initComponents();
m_jTendered.addPropertyChangeListener("Edition", new RecalculateState());
m_jTendered.addEditorKeys(m_jKeys);
String code = dlSystem.getResourceAsXML("payment.cash");
if (code != null) {
try {
ScriptEngine script = ScriptFactory.getScriptEngine(ScriptFactory.BEANSHELL);
script.put("payment", new ScriptPaymentCash(dlSystem));
script.eval(code);
} catch (ScriptException e) {
MessageInf msg = new MessageInf(MessageInf.SGN_NOTICE, AppLocal.getIntString("message.cannotexecute"), e);
msg.show(this);
}
}
m_paymentgateway = PaymentGatewayFac.getPaymentGateway(app.getProperties());
// if (m_paymentgateway == null) {
// jlblMessage.setText(AppLocal.getIntString("message.nopaymentgateway"));
// } else {
// // Se van a poder efectuar pagos con tarjeta
// m_cardpanel = PaymentPanelFac.getPaymentPanel(app.getProperties().getProperty("payment.magcardreader"), notifier);
// add(m_cardpanel.getComponent(), BorderLayout.CENTER);
// jlblMessage.setText(null);
// // jlblMessage.setText(AppLocal.getIntString("message.nocardreader"));
// }
}
public void activate(CustomerInfoExt customerext, double dTotal, String transID) {
m_dTotal = dTotal;
m_jTendered.reset();
m_jTendered.activate();
printState();
}
public PaymentInfo executePayment() {
m_dTotal=m_dPaid;
jlblMessage.setText(null);
PaymentInfoMagcard payinfo = new PaymentInfoMagcard("0", "0", "0", "0", m_dTotal);
m_paymentgateway.execute(payinfo);
if (payinfo.isPaymentOK()) {
return payinfo;
} else {
jlblMessage.setText(payinfo.getMessage());
return null;
}
}
public Component getComponent() {
return this;
}
private void printState() {
Double value = m_jTendered.getDoubleValue();
if (value == null || value == 0.0) {
// m_dPaid = m_dTotal;
m_dPaid = 0.0;
} else {
m_dPaid = value;
}
int iCompare = RoundUtils.compare(m_dPaid, m_dTotal);
m_jMoneyEuros.setText(Formats.CURRENCY.formatValue(new Double(m_dPaid)));
m_notifier.setStatus(m_dPaid > 0.0, iCompare >= 0);
}
private class RecalculateState implements PropertyChangeListener {
public void propertyChange(PropertyChangeEvent evt) {
printState();
}
}
public class ScriptPaymentCash {
private DataLogicSystem dlSystem;
private ThumbNailBuilder tnbbutton;
public ScriptPaymentCash(DataLogicSystem dlSystem) {
this.dlSystem = dlSystem;
tnbbutton = new ThumbNailBuilder(64, 54, "com/openbravo/images/cash.png");
}
public void addButton(String image, double amount) {
JButton btn = new JButton();
btn.setIcon(new ImageIcon(tnbbutton.getThumbNailText(dlSystem.getResourceAsImage(image), Formats.CURRENCY.formatValue(amount))));
btn.setFocusPainted(false);
btn.setFocusable(false);
btn.setRequestFocusEnabled(false);
btn.setHorizontalTextPosition(SwingConstants.CENTER);
btn.setVerticalTextPosition(SwingConstants.BOTTOM);
btn.setMargin(new Insets(2, 2, 2, 2));
btn.addActionListener(new AddAmount(amount));
jPanel6.add(btn);
}
}
private class AddAmount implements ActionListener {
private double amount;
public AddAmount(double amount) {
this.amount = amount;
}
public void actionPerformed(ActionEvent e) {
Double tendered = m_jTendered.getDoubleValue();
if (tendered == null) {
m_jTendered.setDoubleValue(amount);
} else {
m_jTendered.setDoubleValue(tendered + amount);
}
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() {
jPanel5 = new javax.swing.JPanel();
jPanel4 = new javax.swing.JPanel();
jLabel8 = new javax.swing.JLabel();
m_jMoneyEuros = new javax.swing.JLabel();
jPanel6 = new javax.swing.JPanel();
jPanel7 = new javax.swing.JPanel();
jlblMessage = new javax.swing.JTextArea();
jPanel2 = new javax.swing.JPanel();
jPanel1 = new javax.swing.JPanel();
m_jKeys = new com.openbravo.editor.JEditorKeys();
jPanel3 = new javax.swing.JPanel();
m_jTendered = new com.openbravo.editor.JEditorCurrencyPositive();
setLayout(new java.awt.BorderLayout());
jPanel5.setLayout(new java.awt.BorderLayout());
jPanel4.setPreferredSize(new java.awt.Dimension(0, 50));
jPanel4.setLayout(null);
jLabel8.setText(AppLocal.getIntString("Label.InputCash")); // NOI18N
jPanel4.add(jLabel8);
jLabel8.setBounds(20, 20, 100, 16);
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);
jPanel5.add(jPanel4, java.awt.BorderLayout.NORTH);
jPanel6.setLayout(new java.awt.FlowLayout(java.awt.FlowLayout.LEFT));
jPanel5.add(jPanel6, java.awt.BorderLayout.CENTER);
jlblMessage.setBackground(javax.swing.UIManager.getDefaults().getColor("Label.background"));
jlblMessage.setEditable(false);
jlblMessage.setLineWrap(true);
jlblMessage.setWrapStyleWord(true);
jlblMessage.setFocusable(false);
jlblMessage.setPreferredSize(new java.awt.Dimension(300, 62));
jlblMessage.setRequestFocusEnabled(false);
jPanel7.add(jlblMessage);
jPanel5.add(jPanel7, java.awt.BorderLayout.SOUTH);
add(jPanel5, java.awt.BorderLayout.CENTER);
jPanel2.setLayout(new java.awt.BorderLayout());
jPanel1.setLayout(new javax.swing.BoxLayout(jPanel1, javax.swing.BoxLayout.Y_AXIS));
jPanel1.add(m_jKeys);
jPanel3.setBorder(javax.swing.BorderFactory.createEmptyBorder(5, 5, 5, 5));
jPanel3.setLayout(new java.awt.BorderLayout());
jPanel3.add(m_jTendered, java.awt.BorderLayout.CENTER);
jPanel1.add(jPanel3);
jPanel2.add(jPanel1, java.awt.BorderLayout.NORTH);
add(jPanel2, java.awt.BorderLayout.LINE_END);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JLabel jLabel8;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JPanel jPanel3;
private javax.swing.JPanel jPanel4;
private javax.swing.JPanel jPanel5;
private javax.swing.JPanel jPanel6;
private javax.swing.JPanel jPanel7;
private javax.swing.JTextArea jlblMessage;
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
}