Subversion Repositories SmartDukaan

Rev

Rev 23542 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23542 Rev 35704
Line 13... Line 13...
13
	private float cgstAmount;
13
	private float cgstAmount;
14
	private float sgstRate;
14
	private float sgstRate;
15
	private float sgstAmount;
15
	private float sgstAmount;
16
	private String hsnCode;
16
	private String hsnCode;
17
	private int orderId;
17
	private int orderId;
-
 
18
	private boolean marginScheme;
-
 
19
	private float purchasePrice;
-
 
20
	private float sellingPrice;
-
 
21
	private float margin;
18
	
22
	
19
	public String getDescription() {
23
	public String getDescription() {
20
		return description;
24
		return description;
21
	}
25
	}
22
	public void setDescription(String description) {
26
	public void setDescription(String description) {
Line 163... Line 167...
163
		return orderId;
167
		return orderId;
164
	}
168
	}
165
	public void setOrderId(int orderId) {
169
	public void setOrderId(int orderId) {
166
		this.orderId = orderId;
170
		this.orderId = orderId;
167
	}
171
	}
-
 
172
	public boolean isMarginScheme() {
-
 
173
		return marginScheme;
-
 
174
	}
-
 
175
	public void setMarginScheme(boolean marginScheme) {
-
 
176
		this.marginScheme = marginScheme;
-
 
177
	}
-
 
178
	public float getPurchasePrice() {
-
 
179
		return purchasePrice;
-
 
180
	}
-
 
181
	public void setPurchasePrice(float purchasePrice) {
-
 
182
		this.purchasePrice = purchasePrice;
-
 
183
	}
-
 
184
	public float getSellingPrice() {
-
 
185
		return sellingPrice;
-
 
186
	}
-
 
187
	public void setSellingPrice(float sellingPrice) {
-
 
188
		this.sellingPrice = sellingPrice;
-
 
189
	}
-
 
190
	public float getMargin() {
-
 
191
		return margin;
-
 
192
	}
-
 
193
	public void setMargin(float margin) {
-
 
194
		this.margin = margin;
-
 
195
	}
168
}
196
}