0282345603
Committing 5.0 Source Code
148 lines
3.5 KiB
Java
148 lines
3.5 KiB
Java
// uniCenta oPOS - Touch Friendly Point Of Sale
|
|
// Copyright (c) 2009-2017 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.voucher;
|
|
|
|
import com.unicenta.basic.BasicException;
|
|
import com.unicenta.data.loader.DataRead;
|
|
import com.unicenta.data.loader.IKeyed;
|
|
import com.unicenta.data.loader.SerializerRead;
|
|
|
|
|
|
public class VoucherInfo implements IKeyed {
|
|
private String id;
|
|
private String voucherNumber;
|
|
private String customerName;
|
|
private double amount;
|
|
private String status;
|
|
|
|
public VoucherInfo() {
|
|
}
|
|
|
|
public VoucherInfo(
|
|
String id,
|
|
String voucherNumber,
|
|
String customerName,
|
|
double amount,
|
|
String status)
|
|
{
|
|
this.id = id;
|
|
this.voucherNumber = voucherNumber;
|
|
this.customerName = customerName;
|
|
this.amount = amount;
|
|
this.status = status;
|
|
}
|
|
|
|
|
|
@Override
|
|
public Object getKey() {
|
|
return getId();
|
|
}
|
|
|
|
/**
|
|
* @return the id
|
|
*/
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
/**
|
|
* @param id the id to set
|
|
*/
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
/**
|
|
* @return the voucherNumber
|
|
*/
|
|
public String getVoucherNumber() {
|
|
return voucherNumber;
|
|
}
|
|
|
|
/**
|
|
* @param voucherNumber the voucherNumber to set
|
|
*/
|
|
public void setVoucherNumber(String voucherNumber) {
|
|
this.voucherNumber = voucherNumber;
|
|
}
|
|
|
|
/**
|
|
* @return the customerName
|
|
*/
|
|
public String getCustomerName() {
|
|
return customerName;
|
|
}
|
|
|
|
/**
|
|
* @param customerName the customerName to set
|
|
*/
|
|
public void setCustomerName(String customerName) {
|
|
this.customerName = customerName;
|
|
}
|
|
|
|
/**
|
|
* @return the amount
|
|
*/
|
|
public double getAmount() {
|
|
return amount;
|
|
}
|
|
|
|
/**
|
|
* @param amount the amount to set
|
|
*/
|
|
public void setAmount(double amount) {
|
|
this.amount = amount;
|
|
}
|
|
|
|
|
|
@Override
|
|
public String toString() {
|
|
return voucherNumber;
|
|
}
|
|
|
|
/**
|
|
* @return the status
|
|
*/
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* @param status the status to set
|
|
*/
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public static SerializerRead getSerializerRead() {
|
|
return new SerializerRead()
|
|
{
|
|
@Override
|
|
public Object readValues(DataRead dr) throws BasicException {
|
|
return new VoucherInfo(
|
|
dr.getString(1),
|
|
dr.getString(2),
|
|
dr.getString(3),
|
|
dr.getDouble(4),
|
|
dr.getString(5));
|
|
}};
|
|
}
|
|
}
|