Subversion Repositories SmartDukaan

Rev

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

Rev 21894 Rev 21915
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
3
public class CustomFofoOrderItem {
3
public class CustomFofoOrderItem {
4
	
-
 
5
	private String description;
4
	private String description;
6
	private int quantity;
5
	private int quantity;
7
	private float rate;
6
	private float rate;
8
	private float amount;
7
	private float amount;
9
	private float igstRate;
8
	private float igstRate;
-
 
9
	private float igstAmount;
10
	private float cgstRate;
10
	private float cgstRate;
-
 
11
	private float cgstAmount;
11
	private float sgstRate;
12
	private float sgstRate;
-
 
13
	private float sgstAmount;
12
	private String hsnCode;
14
	private String hsnCode;
13
	private float itemTotal;
15
	private float itemTotal;
14
	private String serialNumbers;
16
	private String serialNumbers;
15
	public String getDescription() {
17
	public String getDescription() {
16
		return description;
18
		return description;
Line 40... Line 42...
40
		return igstRate;
42
		return igstRate;
41
	}
43
	}
42
	public void setIgstRate(float igstRate) {
44
	public void setIgstRate(float igstRate) {
43
		this.igstRate = igstRate;
45
		this.igstRate = igstRate;
44
	}
46
	}
-
 
47
	public float getIgstAmount() {
-
 
48
		return igstAmount;
-
 
49
	}
-
 
50
	public void setIgstAmount(float igstAmount) {
-
 
51
		this.igstAmount = igstAmount;
-
 
52
	}
45
	public float getCgstRate() {
53
	public float getCgstRate() {
46
		return cgstRate;
54
		return cgstRate;
47
	}
55
	}
48
	public void setCgstRate(float cgstRate) {
56
	public void setCgstRate(float cgstRate) {
49
		this.cgstRate = cgstRate;
57
		this.cgstRate = cgstRate;
50
	}
58
	}
-
 
59
	public float getCgstAmount() {
-
 
60
		return cgstAmount;
-
 
61
	}
-
 
62
	public void setCgstAmount(float cgstAmount) {
-
 
63
		this.cgstAmount = cgstAmount;
-
 
64
	}
51
	public float getSgstRate() {
65
	public float getSgstRate() {
52
		return sgstRate;
66
		return sgstRate;
53
	}
67
	}
54
	public void setSgstRate(float sgstRate) {
68
	public void setSgstRate(float sgstRate) {
55
		this.sgstRate = sgstRate;
69
		this.sgstRate = sgstRate;
56
	}
70
	}
-
 
71
	public float getSgstAmount() {
-
 
72
		return sgstAmount;
-
 
73
	}
-
 
74
	public void setSgstAmount(float sgstAmount) {
-
 
75
		this.sgstAmount = sgstAmount;
-
 
76
	}
57
	public String getHsnCode() {
77
	public String getHsnCode() {
58
		return hsnCode;
78
		return hsnCode;
59
	}
79
	}
60
	public void setHsnCode(String hsnCode) {
80
	public void setHsnCode(String hsnCode) {
61
		this.hsnCode = hsnCode;
81
		this.hsnCode = hsnCode;