Subversion Repositories SmartDukaan

Rev

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

Rev 22351 Rev 22668
Line 2... Line 2...
2
 
2
 
3
public class CustomFofoOrderItem {
3
public class CustomFofoOrderItem {
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 amount;
8
	private float amount;
8
	private float igstRate;
9
	private float igstRate;
9
	private float igstAmount;
10
	private float igstAmount;
10
	private float cgstRate;
11
	private float cgstRate;
11
	private float cgstAmount;
12
	private float cgstAmount;
Line 142... Line 143...
142
		return "CustomFofoOrderItem [description=" + description + ", quantity=" + quantity + ", rate=" + rate
143
		return "CustomFofoOrderItem [description=" + description + ", quantity=" + quantity + ", rate=" + rate
143
				+ ", amount=" + amount + ", igstRate=" + igstRate + ", igstAmount=" + igstAmount + ", cgstRate="
144
				+ ", amount=" + amount + ", igstRate=" + igstRate + ", igstAmount=" + igstAmount + ", cgstRate="
144
				+ cgstRate + ", cgstAmount=" + cgstAmount + ", sgstRate=" + sgstRate + ", sgstAmount=" + sgstAmount
145
				+ cgstRate + ", cgstAmount=" + cgstAmount + ", sgstRate=" + sgstRate + ", sgstAmount=" + sgstAmount
145
				+ ", hsnCode=" + hsnCode + "]";
146
				+ ", hsnCode=" + hsnCode + "]";
146
	}
147
	}
-
 
148
	public float getDiscount() {
-
 
149
		return discount;
-
 
150
	}
-
 
151
	public void setDiscount(float discount) {
-
 
152
		this.discount = discount;
-
 
153
	}
147
	
154
	
148
	
155
	
149
}
156
}