Subversion Repositories SmartDukaan

Rev

Rev 21686 | Rev 21915 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21686 Rev 21894
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
3
import java.util.Set;
-
 
4
 
-
 
5
public class CustomFofoOrderItem {
3
public class CustomFofoOrderItem {
6
	
4
	
7
	private String description;
5
	private String description;
8
	private int quantity;
6
	private int quantity;
9
	private float rate;
7
	private float rate;
10
	private float amount;
8
	private float amount;
-
 
9
	private float igstRate;
11
	private float taxRate;
10
	private float cgstRate;
12
	private float tax;
11
	private float sgstRate;
-
 
12
	private String hsnCode;
13
	private float itemTotal;
13
	private float itemTotal;
14
	private String serialNumbers;
14
	private String serialNumbers;
15
	public String getDescription() {
15
	public String getDescription() {
16
		return description;
16
		return description;
17
	}
17
	}
Line 34... Line 34...
34
		return amount;
34
		return amount;
35
	}
35
	}
36
	public void setAmount(float amount) {
36
	public void setAmount(float amount) {
37
		this.amount = amount;
37
		this.amount = amount;
38
	}
38
	}
39
	public float getTaxRate() {
39
	public float getIgstRate() {
-
 
40
		return igstRate;
-
 
41
	}
-
 
42
	public void setIgstRate(float igstRate) {
-
 
43
		this.igstRate = igstRate;
-
 
44
	}
-
 
45
	public float getCgstRate() {
-
 
46
		return cgstRate;
-
 
47
	}
-
 
48
	public void setCgstRate(float cgstRate) {
-
 
49
		this.cgstRate = cgstRate;
-
 
50
	}
-
 
51
	public float getSgstRate() {
40
		return taxRate;
52
		return sgstRate;
41
	}
53
	}
42
	public void setTaxRate(float taxRate) {
54
	public void setSgstRate(float sgstRate) {
43
		this.taxRate = taxRate;
55
		this.sgstRate = sgstRate;
44
	}
56
	}
45
	public float getTax() {
57
	public String getHsnCode() {
46
		return tax;
58
		return hsnCode;
47
	}
59
	}
48
	public void setTax(float tax) {
60
	public void setHsnCode(String hsnCode) {
49
		this.tax = tax;
61
		this.hsnCode = hsnCode;
50
	}
62
	}
51
	public float getItemTotal() {
63
	public float getItemTotal() {
52
		return itemTotal;
64
		return itemTotal;
53
	}
65
	}
54
	public void setItemTotal(float itemTotal) {
66
	public void setItemTotal(float itemTotal) {