// uniCenta oPOS - Touch Friendly Point Of Sale // Copyright (C) 2008-2009 Openbravo, S.L. // 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.payment; import com.openbravo.basic.BasicException; import com.openbravo.data.loader.DataRead; import com.openbravo.data.loader.SerializableRead; import com.openbravo.format.Formats; public class PaymentInfoTicket extends PaymentInfo implements SerializableRead { private static final long serialVersionUID = 8865238639097L; private double m_dTicket; private String m_sName; private String m_transactionID; private double m_dTendered; private double m_change; /** Creates a new instance of PaymentInfoCash */ public PaymentInfoTicket(double dTicket, String sName) { m_sName = sName; m_dTicket = dTicket; } public PaymentInfoTicket(double dTicket, String sName, String transactionID) { m_sName = sName; m_dTicket = dTicket; m_transactionID = transactionID; } public PaymentInfoTicket() { m_sName = null; m_dTicket = 0.0; m_transactionID = null; } @Override public void readValues(DataRead dr) throws BasicException { m_sName = dr.getString(1); m_dTicket = dr.getDouble(2).doubleValue(); m_transactionID = dr.getString(3); m_dTendered = dr.getDouble(4).doubleValue(); } @Override public PaymentInfo copyPayment(){ return new PaymentInfoTicket(m_dTicket, m_sName); } @Override public String getName() { return m_sName; } @Override public double getTotal() { return m_dTicket; } @Override public String getTransactionID(){ return m_transactionID; } public String printTendered() { return Formats.CURRENCY.formatValue(new Double(m_dTendered)); } public String printPaid() { return Formats.CURRENCY.formatValue(new Double(m_dTicket)); } // Especificas public String printPaperTotal() { // En una devolucion hay que cambiar el signo al total return Formats.CURRENCY.formatValue(new Double(-m_dTicket)); } @Override public double getPaid() { return (0.0); } public String printChange() { return Formats.CURRENCY.formatValue(new Double(m_dTendered - m_dTicket)); } public double getChange(){ return m_dTendered - m_dTicket; } }