Subversion Repositories SmartDukaan

Rev

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

Rev 22668 Rev 22684
Line 4... Line 4...
4
	private String description;
4
	private String description;
5
	private int quantity;
5
	private int quantity;
6
	private float rate;
6
	private float rate;
7
	private float discount;
7
	private float discount;
8
	private float amount;
8
	private float amount;
-
 
9
	private float netAmount;
9
	private float igstRate;
10
	private float igstRate;
10
	private float igstAmount;
11
	private float igstAmount;
11
	private float cgstRate;
12
	private float cgstRate;
12
	private float cgstAmount;
13
	private float cgstAmount;
13
	private float sgstRate;
14
	private float sgstRate;
Line 149... Line 150...
149
		return discount;
150
		return discount;
150
	}
151
	}
151
	public void setDiscount(float discount) {
152
	public void setDiscount(float discount) {
152
		this.discount = discount;
153
		this.discount = discount;
153
	}
154
	}
-
 
155
	public float getNetAmount() {
-
 
156
		return netAmount;
-
 
157
	}
-
 
158
	public void setNetAmount(float netAmount) {
-
 
159
		this.netAmount = netAmount;
-
 
160
	}
154
	
161
	
155
	
162
	
156
}
163
}