Subversion Repositories SmartDukaan

Rev

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

Rev 21714 Rev 21895
Line 45... Line 45...
45
	private float sellingPrice;
45
	private float sellingPrice;
46
	
46
	
47
	@Column(name = "cost")
47
	@Column(name = "cost")
48
	private float cost;
48
	private float cost;
49
	
49
	
50
	@Column(name = "tax_rate")
50
	@Column(name = "igst_rate")
51
	private float taxRate;
51
	private float igstRate;
52
	
52
	
-
 
53
	@Column(name = "cgst_rate")
-
 
54
	private float cgstRate;
-
 
55
	
53
	@Column(name = "tax")
56
	@Column(name = "sgst_rate")
54
	private float tax;
57
	private float sgstRate;
-
 
58
	
-
 
59
	@Column(name = "hsn_code")
-
 
60
	private String hsnCode;
55
	
61
	
56
	@Column(name = "dp")
62
	@Column(name = "dp")
57
	private float dp;
63
	private float dp;
58
	
64
	
59
	@Column(name = "brand")
65
	@Column(name = "brand")
Line 108... Line 114...
108
	}
114
	}
109
	public void setCost(float cost) {
115
	public void setCost(float cost) {
110
		this.cost = cost;
116
		this.cost = cost;
111
	}
117
	}
112
	
118
	
113
	public float getTax() {
119
	public float getIgstRate() {
-
 
120
		return igstRate;
-
 
121
	}
-
 
122
	public void setIgstRate(float igstRate) {
-
 
123
		this.igstRate = igstRate;
-
 
124
	}
-
 
125
	public float getCgstRate() {
114
		return tax;
126
		return cgstRate;
115
	}
127
	}
116
	public void setTax(float tax) {
128
	public void setCgstRate(float cgstRate) {
117
		this.tax = tax;
129
		this.cgstRate = cgstRate;
118
	}
130
	}
119
	public float getTaxRate() {
131
	public float getSgstRate() {
120
		return taxRate;
132
		return sgstRate;
121
	}
133
	}
122
	public void setTaxRate(float taxRate) {
134
	public void setSgstRate(float sgstRate) {
123
		this.taxRate = taxRate;
135
		this.sgstRate = sgstRate;
124
	}
136
	}
-
 
137
	public String getHsnCode() {
-
 
138
		return hsnCode;
-
 
139
	}
-
 
140
	public void setHsnCode(String hsnCode) {
-
 
141
		this.hsnCode = hsnCode;
-
 
142
	}
-
 
143
	
125
	public float getDp() {
144
	public float getDp() {
126
		return dp;
145
		return dp;
127
	}
146
	}
128
	public void setDp(float dp) {
147
	public void setDp(float dp) {
129
		this.dp = dp;
148
		this.dp = dp;
Line 160... Line 179...
160
		this.fofoLineItemSerialNumbers = fofoLineItemSerialNumbers;
179
		this.fofoLineItemSerialNumbers = fofoLineItemSerialNumbers;
161
	}
180
	}
162
	@Override
181
	@Override
163
	public String toString() {
182
	public String toString() {
164
		return "FofoLineItem [id=" + id + ", orderId=" + orderId + ", itemId=" + itemId + ", quantity=" + quantity
183
		return "FofoLineItem [id=" + id + ", orderId=" + orderId + ", itemId=" + itemId + ", quantity=" + quantity
165
				+ ", sellingPrice=" + sellingPrice + ", tax=" + tax + ", dp=" + dp + ", brand=" + brand + ", modelName="
184
				+ ", sellingPrice=" + sellingPrice + ", cost=" + cost + ", igstRate=" + igstRate + ", cgstRate="
-
 
185
				+ cgstRate + ", sgstRate=" + sgstRate + ", hsnCode=" + hsnCode + ", dp=" + dp + ", brand=" + brand
166
				+ modelName + ", modelNumber=" + modelNumber + ", color=" + color + "]";
186
				+ ", modelName=" + modelName + ", modelNumber=" + modelNumber + ", color=" + color
-
 
187
				+ ", fofoLineItemSerialNumbers=" + fofoLineItemSerialNumbers + "]";
167
	}
188
	}
168
	
189
	
169
	
-
 
170
}
190
}