5.0 Source Code
Committing 5.0 Source Code
This commit is contained in:
@@ -0,0 +1,213 @@
|
||||
// uniCenta oPOS - Touch Friendly Point Of Sale
|
||||
// Copyright (c) 2009-2017 uniCenta
|
||||
// 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.ticket;
|
||||
|
||||
import com.unicenta.data.loader.IKeyed;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author adrianromero
|
||||
*/
|
||||
public class TaxInfo implements Serializable, IKeyed {
|
||||
|
||||
private static final long serialVersionUID = -2705212098856473043L;
|
||||
private String id;
|
||||
private String name;
|
||||
private String taxcategoryid; // Product
|
||||
private String taxcustcategoryid; // Customer
|
||||
private String parentid;
|
||||
|
||||
private double rate;
|
||||
private boolean cascade;
|
||||
private Integer order;
|
||||
|
||||
/** Creates new TaxInfo
|
||||
* @param id
|
||||
* @param name
|
||||
* @param taxcategoryid
|
||||
* @param taxcustcategoryid
|
||||
* @param rate
|
||||
* @param cascade
|
||||
* @param parentid
|
||||
* @param order */
|
||||
public TaxInfo(String id, String name, String taxcategoryid, String taxcustcategoryid,
|
||||
String parentid, double rate, boolean cascade, Integer order) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.taxcategoryid = taxcategoryid;
|
||||
this.taxcustcategoryid = taxcustcategoryid;
|
||||
this.parentid = parentid;
|
||||
|
||||
this.rate = rate;
|
||||
this.cascade = cascade;
|
||||
this.order = order;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public Object getKey() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public void setID(String value) {
|
||||
id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public void setName(String value) {
|
||||
name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Product's
|
||||
* @return
|
||||
*/
|
||||
public String getTaxCategoryID() {
|
||||
return taxcategoryid;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public void setTaxCategoryID(String value) {
|
||||
taxcategoryid = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Customer
|
||||
* @return
|
||||
*/
|
||||
public String getTaxCustCategoryID() {
|
||||
return taxcustcategoryid;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public void setTaxCustCategoryID(String value) {
|
||||
taxcustcategoryid = value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public String getParentID() {
|
||||
return parentid;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public void setParentID(String value) {
|
||||
parentid = value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public double getRate() {
|
||||
return rate;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public void setRate(double value) {
|
||||
rate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public boolean isCascade() {
|
||||
return cascade;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public void setCascade(boolean value) {
|
||||
cascade = value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public Integer getOrder() {
|
||||
return order;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public Integer getApplicationOrder() {
|
||||
return order == null ? Integer.MAX_VALUE : order.intValue();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public void setOrder(Integer value) {
|
||||
order = value;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(){
|
||||
return name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user