Subversion Repositories SmartDukaan

Rev

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

Rev 30652 Rev 31860
Line 11... Line 11...
11
 * This class basically contains api details
11
 * This class basically contains api details
12
 *
12
 *
13
 * @author ashikali
13
 * @author ashikali
14
 */
14
 */
15
@Entity
15
@Entity
16
@Table(name = "transaction.lineitem", schema = "transaction")
16
@Table(name = "transaction.lineitem")
17
@NamedQueries({
-
 
18
		@NamedQuery(name = "LineItem.selectAll", query = "select li from LineItem li"),
-
 
19
		@NamedQuery(name = "LineItem.selectById", query = "select li from LineItem li where li.id= :id")
17
@NamedQueries({@NamedQuery(name = "LineItem.selectAll", query = "select li from LineItem li"), @NamedQuery(name = "LineItem.selectById", query = "select li from LineItem li where li.id= :id")
20
})
18
})
21
public class LineItem implements Serializable {
19
public class LineItem implements Serializable {
22
 
20
 
23
	private static final long serialVersionUID = 1L;
21
    private static final long serialVersionUID = 1L;
24
 
22
 
25
	public LineItem() {
23
    public LineItem() {
26
	}
24
    }
27
 
25
 
28
	@Id
26
    @Id
29
	@Column(name = "id", unique = true, updatable = false)
27
    @Column(name = "id", unique = true, updatable = false)
30
	@GeneratedValue(strategy = GenerationType.IDENTITY)
28
    @GeneratedValue(strategy = GenerationType.IDENTITY)
31
	private Integer id;
29
    private Integer id;
32
 
30
 
33
	@Column(name = "item_id")
31
    @Column(name = "item_id")
34
	private Integer itemId;
32
    private Integer itemId;
35
 
33
 
36
	@Column(name = "productGroup", length = 100)
34
    @Column(name = "productGroup", length = 100)
37
	private String productGoup;
35
    private String productGoup;
38
 
36
 
39
	@Column(name = "brand", length = 100)
37
    @Column(name = "brand", length = 100)
40
	private String brand;
38
    private String brand;
41
 
39
 
42
	@Column(name = "model_number", length = 100)
40
    @Column(name = "model_number", length = 100)
43
	private String modelNumber;
41
    private String modelNumber;
44
 
42
 
45
	@Column(name = "model_name", length = 100)
43
    @Column(name = "model_name", length = 100)
46
	private String modelName;
44
    private String modelName;
47
 
45
 
48
	@Column(name = "color", length = 20)
46
    @Column(name = "color", length = 20)
49
	private String color;
47
    private String color;
50
 
48
 
51
	@Column(name = "extra_info", length = 100)
49
    @Column(name = "extra_info", length = 100)
52
	private String extraInfo;
50
    private String extraInfo;
53
 
51
 
54
	@Column(name = "quantity")
52
    @Column(name = "quantity")
55
	private Integer quantity;
53
    private Integer quantity;
56
 
54
 
57
	@Column(name = "mrp")
55
    @Column(name = "mrp")
58
	private Float mrp;
56
    private Float mrp;
59
 
57
 
60
	@Column(name = "unit_price")
58
    @Column(name = "unit_price")
61
	private Float unitPrice;
59
    private Float unitPrice;
62
 
60
 
63
	@Column(name = "unit_weight")
61
    @Column(name = "unit_weight")
64
	private Float unitWeight;
62
    private Float unitWeight;
65
 
63
 
66
	@Column(name = "total_price")
64
    @Column(name = "total_price")
67
	private Float totalPrice;
65
    private Float totalPrice;
68
 
66
 
69
	@Column(name = "transfer_price")
67
    @Column(name = "transfer_price")
70
	private Float transferPrice;
68
    private Float transferPrice;
71
 
69
 
72
	@Column(name = "total_weight")
70
    @Column(name = "total_weight")
73
	private Float totalWeight;
71
    private Float totalWeight;
74
 
72
 
75
	@Column(name = "order_id")
73
    @Column(name = "order_id")
76
	private Integer orderId;
74
    private Integer orderId;
77
 
75
 
78
	@Column(name = "imei_number", length = 20)
76
    @Column(name = "imei_number", length = 20)
79
	private String imeiNumber;
77
    private String imeiNumber;
80
 
78
 
81
	@Column(name = "item_number", length = 50)
79
    @Column(name = "item_number", length = 50)
82
	private String itemNumber;
80
    private String itemNumber;
83
 
81
 
84
	@Column(name = "dealText", length = 100)
82
    @Column(name = "dealText", length = 100)
85
	private String dealText;
83
    private String dealText;
86
 
84
 
87
	@Convert(converter = LocalDateTimeAttributeConverter.class)
85
    @Convert(converter = LocalDateTimeAttributeConverter.class)
88
	@Column(name = "warranty_expiry_timestamp")
86
    @Column(name = "warranty_expiry_timestamp")
89
	private LocalDateTime warrantyExpiryTimestamp;
87
    private LocalDateTime warrantyExpiryTimestamp;
90
 
88
 
91
	@Column(name = "nlc")
89
    @Column(name = "nlc")
92
	private Float nlc;
90
    private Float nlc;
93
 
91
 
94
	@Column(name = "logisticsCost")
92
    @Column(name = "logisticsCost")
95
	private Float logisticsCost;
93
    private Float logisticsCost;
96
 
94
 
97
	@Column(name = "codCollectionCharges")
95
    @Column(name = "codCollectionCharges")
98
	private Float codCollectionCharges;
96
    private Float codCollectionCharges;
99
 
97
 
100
	@Column(name = "returnQty")
98
    @Column(name = "returnQty")
101
	private int returnQty;
99
    private int returnQty;
102
 
100
 
103
	@Column(name = "igstRate")
101
    @Column(name = "igstRate")
104
	private Float igstRate;
102
    private Float igstRate;
105
 
103
 
106
	@Column(name = "cgstRate")
104
    @Column(name = "cgstRate")
107
	private Float cgstRate;
105
    private Float cgstRate;
108
 
106
 
109
	@Column(name = "sgstRate")
107
    @Column(name = "sgstRate")
110
	private Float sgstRate;
108
    private Float sgstRate;
111
 
109
 
112
 
110
 
113
	@Column(name = "hsnCode")
111
    @Column(name = "hsnCode")
114
	private String hsnCode;
112
    private String hsnCode;
115
 
113
 
116
	@Convert(converter = LocalDateTimeAttributeConverter.class)
114
    @Convert(converter = LocalDateTimeAttributeConverter.class)
117
	@Column(name = "damaged_expiry_timestamp")
115
    @Column(name = "damaged_expiry_timestamp")
118
	private LocalDateTime damagedExpiryTimestamp;
116
    private LocalDateTime damagedExpiryTimestamp;
119
 
117
 
120
	@OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
118
    @OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
121
	//@Fetch(value = FetchMode.SUBSELECT)
119
    //@Fetch(value = FetchMode.SUBSELECT)
122
	@JoinColumn(name = "item_id", insertable = false, updatable = false, nullable = false, referencedColumnName = "id")
120
    @JoinColumn(name = "item_id", insertable = false, updatable = false, nullable = false, referencedColumnName = "id")
123
	private Item item;
121
    private Item item;
124
 
122
 
125
	public float getTotalTaxRate() {
123
    public float getTotalTaxRate() {
126
		return (this.cgstRate == null ? 0 : this.cgstRate) + (this.sgstRate == null ? 0 : this.sgstRate) + (this.igstRate == null ? 0 : this.igstRate);
124
        return (this.cgstRate == null ? 0 : this.cgstRate) + (this.sgstRate == null ? 0 : this.sgstRate) + (this.igstRate == null ? 0 : this.igstRate);
127
	}
125
    }
128
 
126
 
129
	public String getItemDescription() {
127
    public String getItemDescription() {
130
		StringBuilder itemString = new StringBuilder();
128
        StringBuilder itemString = new StringBuilder();
131
		if (this.getBrand() != null && !this.getBrand().isEmpty()) {
129
        if (this.getBrand() != null && !this.getBrand().isEmpty()) {
132
			itemString.append(this.getBrand().trim());
130
            itemString.append(this.getBrand().trim());
133
		}
131
        }
134
		itemString.append(" ");
132
        itemString.append(" ");
135
		if (this.getModelName() != null && !this.getModelName().isEmpty()) {
133
        if (this.getModelName() != null && !this.getModelName().isEmpty()) {
136
			itemString.append(this.getModelName().trim());
134
            itemString.append(this.getModelName().trim());
137
		}
135
        }
138
		if (this.getModelNumber() != null && !this.getModelNumber().isEmpty()) {
136
        if (this.getModelNumber() != null && !this.getModelNumber().isEmpty()) {
139
			itemString.append(" ");
137
            itemString.append(" ");
140
			itemString.append(this.getModelNumber().trim());
138
            itemString.append(this.getModelNumber().trim());
141
		}
139
        }
142
		if (this.getColor() != null && !this.getColor().isEmpty() && !this.getColor().trim().equals("f_")) {
140
        if (this.getColor() != null && !this.getColor().isEmpty() && !this.getColor().trim().equals("f_")) {
143
			itemString.append(" ");
141
            itemString.append(" ");
144
			itemString.append(this.getColor().trim());
142
            itemString.append(this.getColor().trim());
145
		}
143
        }
146
		return itemString.toString().replaceAll("\\s+", " ").trim();
144
        return itemString.toString().replaceAll("\\s+", " ").trim();
147
	}
145
    }
148
 
146
 
149
	public String getItemDescriptionNoColor() {
147
    public String getItemDescriptionNoColor() {
150
		StringBuilder itemString = new StringBuilder();
148
        StringBuilder itemString = new StringBuilder();
151
		if (this.getBrand() != null && !this.getBrand().isEmpty()) {
149
        if (this.getBrand() != null && !this.getBrand().isEmpty()) {
152
			itemString.append(this.getBrand().trim());
150
            itemString.append(this.getBrand().trim());
153
		}
151
        }
154
		itemString.append(" ");
152
        itemString.append(" ");
155
		if (this.getModelName() != null && !this.getModelName().isEmpty()) {
153
        if (this.getModelName() != null && !this.getModelName().isEmpty()) {
156
			itemString.append(this.getModelName().trim());
154
            itemString.append(this.getModelName().trim());
157
		}
155
        }
158
		if (this.getModelNumber() != null && !this.getModelNumber().isEmpty()) {
156
        if (this.getModelNumber() != null && !this.getModelNumber().isEmpty()) {
159
			itemString.append(" ");
157
            itemString.append(" ");
160
			itemString.append(this.getModelNumber().trim());
158
            itemString.append(this.getModelNumber().trim());
161
		}
159
        }
162
 
160
 
163
		return itemString.toString().replaceAll("\\s+", " ").trim();
161
        return itemString.toString().replaceAll("\\s+", " ").trim();
164
	}
162
    }
165
 
163
 
166
	public Integer getId() {
164
    public Integer getId() {
167
		return id;
165
        return id;
168
	}
166
    }
169
 
167
 
170
	public void setId(Integer id) {
168
    public void setId(Integer id) {
171
		this.id = id;
169
        this.id = id;
172
	}
170
    }
173
 
171
 
174
	public Integer getItemId() {
172
    public Integer getItemId() {
175
		return itemId;
173
        return itemId;
176
	}
174
    }
177
 
175
 
178
	public void setItemId(Integer itemId) {
176
    public void setItemId(Integer itemId) {
179
		this.itemId = itemId;
177
        this.itemId = itemId;
180
	}
178
    }
181
 
179
 
182
	public String getProductGoup() {
180
    public String getProductGoup() {
183
		return productGoup;
181
        return productGoup;
184
	}
182
    }
185
 
183
 
186
	public void setProductGoup(String productGoup) {
184
    public void setProductGoup(String productGoup) {
187
		this.productGoup = productGoup;
185
        this.productGoup = productGoup;
188
	}
186
    }
189
 
187
 
190
	public String getBrand() {
188
    public String getBrand() {
191
		return brand;
189
        return brand;
192
	}
190
    }
193
 
191
 
194
	public void setBrand(String brand) {
192
    public void setBrand(String brand) {
195
		this.brand = brand;
193
        this.brand = brand;
196
	}
194
    }
197
 
195
 
198
	public String getModelNumber() {
196
    public String getModelNumber() {
199
		return modelNumber;
197
        return modelNumber;
200
	}
198
    }
201
 
199
 
202
	public void setModelNumber(String modelNumber) {
200
    public void setModelNumber(String modelNumber) {
203
		this.modelNumber = modelNumber;
201
        this.modelNumber = modelNumber;
204
	}
202
    }
205
 
203
 
206
	public String getModelName() {
204
    public String getModelName() {
207
		return modelName;
205
        return modelName;
208
	}
206
    }
209
 
207
 
210
	public void setModelName(String modelName) {
208
    public void setModelName(String modelName) {
211
		this.modelName = modelName;
209
        this.modelName = modelName;
212
	}
210
    }
213
 
211
 
214
	public String getColor() {
212
    public String getColor() {
215
		return color;
213
        return color;
216
	}
214
    }
217
 
215
 
218
	public void setColor(String color) {
216
    public void setColor(String color) {
219
		this.color = color;
217
        this.color = color;
220
	}
218
    }
221
 
219
 
222
	public String getExtraInfo() {
220
    public String getExtraInfo() {
223
		return extraInfo;
221
        return extraInfo;
224
	}
222
    }
225
 
223
 
226
	public void setExtraInfo(String extraInfo) {
224
    public void setExtraInfo(String extraInfo) {
227
		this.extraInfo = extraInfo;
225
        this.extraInfo = extraInfo;
228
	}
226
    }
229
 
227
 
230
	public Integer getQuantity() {
228
    public Integer getQuantity() {
231
		return quantity;
229
        return quantity;
232
	}
230
    }
233
 
231
 
234
	public void setQuantity(Integer quantity) {
232
    public void setQuantity(Integer quantity) {
235
		this.quantity = quantity;
233
        this.quantity = quantity;
236
	}
234
    }
237
 
235
 
238
	public Float getMrp() {
236
    public Float getMrp() {
239
		return mrp;
237
        return mrp;
240
	}
238
    }
241
 
239
 
242
	public void setMrp(Float mrp) {
240
    public void setMrp(Float mrp) {
243
		this.mrp = mrp;
241
        this.mrp = mrp;
244
	}
242
    }
245
 
243
 
246
	public Float getUnitPrice() {
244
    public Float getUnitPrice() {
247
		return unitPrice;
245
        return unitPrice;
248
	}
246
    }
249
 
247
 
250
	public void setUnitPrice(Float unitPrice) {
248
    public void setUnitPrice(Float unitPrice) {
251
		this.unitPrice = unitPrice;
249
        this.unitPrice = unitPrice;
252
	}
250
    }
253
 
251
 
254
	public Float getUnitWeight() {
252
    public Float getUnitWeight() {
255
		return unitWeight;
253
        return unitWeight;
256
	}
254
    }
257
 
255
 
258
	public void setUnitWeight(Float unitWeight) {
256
    public void setUnitWeight(Float unitWeight) {
259
		this.unitWeight = unitWeight;
257
        this.unitWeight = unitWeight;
260
	}
258
    }
261
 
259
 
262
	public Float getTotalPrice() {
260
    public Float getTotalPrice() {
263
		return totalPrice;
261
        return totalPrice;
264
	}
262
    }
265
 
263
 
266
	public void setTotalPrice(Float totalPrice) {
264
    public void setTotalPrice(Float totalPrice) {
267
		this.totalPrice = totalPrice;
265
        this.totalPrice = totalPrice;
268
	}
266
    }
269
 
267
 
270
	public Float getTransferPrice() {
268
    public Float getTransferPrice() {
271
		return transferPrice;
269
        return transferPrice;
272
	}
270
    }
273
 
271
 
274
	public void setTransferPrice(Float transferPrice) {
272
    public void setTransferPrice(Float transferPrice) {
275
		this.transferPrice = transferPrice;
273
        this.transferPrice = transferPrice;
276
	}
274
    }
277
 
275
 
278
	public Float getTotalWeight() {
276
    public Float getTotalWeight() {
279
		return totalWeight;
277
        return totalWeight;
280
	}
278
    }
281
 
279
 
282
	public void setTotalWeight(Float totalWeight) {
280
    public void setTotalWeight(Float totalWeight) {
283
		this.totalWeight = totalWeight;
281
        this.totalWeight = totalWeight;
284
	}
282
    }
285
 
283
 
286
	public Integer getOrderId() {
284
    public Integer getOrderId() {
287
		return orderId;
285
        return orderId;
288
	}
286
    }
289
 
287
 
290
	public void setOrderId(Integer orderId) {
288
    public void setOrderId(Integer orderId) {
291
		this.orderId = orderId;
289
        this.orderId = orderId;
292
	}
290
    }
293
 
291
 
294
	public String getImeiNumber() {
292
    public String getImeiNumber() {
295
		return imeiNumber;
293
        return imeiNumber;
296
	}
294
    }
297
 
295
 
298
	public void setImeiNumber(String imeiNumber) {
296
    public void setImeiNumber(String imeiNumber) {
299
		this.imeiNumber = imeiNumber;
297
        this.imeiNumber = imeiNumber;
300
	}
298
    }
301
 
299
 
302
	public String getItemNumber() {
300
    public String getItemNumber() {
303
		return itemNumber;
301
        return itemNumber;
304
	}
302
    }
305
 
303
 
306
	public void setItemNumber(String itemNumber) {
304
    public void setItemNumber(String itemNumber) {
307
		this.itemNumber = itemNumber;
305
        this.itemNumber = itemNumber;
308
	}
306
    }
309
 
307
 
310
	public String getDealText() {
308
    public String getDealText() {
311
		return dealText;
309
        return dealText;
312
	}
310
    }
313
 
311
 
314
	public void setDealText(String dealText) {
312
    public void setDealText(String dealText) {
315
		this.dealText = dealText;
313
        this.dealText = dealText;
316
	}
314
    }
317
 
315
 
318
	public LocalDateTime getWarrantyExpiryTimestamp() {
316
    public LocalDateTime getWarrantyExpiryTimestamp() {
319
		return warrantyExpiryTimestamp;
317
        return warrantyExpiryTimestamp;
320
	}
318
    }
321
 
319
 
322
	public void setWarrantyExpiryTimestamp(LocalDateTime warrantyExpiryTimestamp) {
320
    public void setWarrantyExpiryTimestamp(LocalDateTime warrantyExpiryTimestamp) {
323
		this.warrantyExpiryTimestamp = warrantyExpiryTimestamp;
321
        this.warrantyExpiryTimestamp = warrantyExpiryTimestamp;
324
	}
322
    }
325
 
323
 
326
	public Float getNlc() {
324
    public Float getNlc() {
327
		return nlc;
325
        return nlc;
328
	}
326
    }
329
 
327
 
330
	public void setNlc(Float nlc) {
328
    public void setNlc(Float nlc) {
331
		this.nlc = nlc;
329
        this.nlc = nlc;
332
	}
330
    }
333
 
331
 
334
	public Float getLogisticsCost() {
332
    public Float getLogisticsCost() {
335
		return logisticsCost;
333
        return logisticsCost;
336
	}
334
    }
337
 
335
 
338
	public void setLogisticsCost(Float logisticsCost) {
336
    public void setLogisticsCost(Float logisticsCost) {
339
		this.logisticsCost = logisticsCost;
337
        this.logisticsCost = logisticsCost;
340
	}
338
    }
341
 
339
 
342
	public Float getCodCollectionCharges() {
340
    public Float getCodCollectionCharges() {
343
		return codCollectionCharges;
341
        return codCollectionCharges;
344
	}
342
    }
345
 
343
 
346
	public void setCodCollectionCharges(Float codCollectionCharges) {
344
    public void setCodCollectionCharges(Float codCollectionCharges) {
347
		this.codCollectionCharges = codCollectionCharges;
345
        this.codCollectionCharges = codCollectionCharges;
348
	}
346
    }
349
 
347
 
350
	public int getReturnQty() {
348
    public int getReturnQty() {
351
		return returnQty;
349
        return returnQty;
352
	}
350
    }
353
 
351
 
354
	public void setReturnQty(int returnQty) {
352
    public void setReturnQty(int returnQty) {
355
		this.returnQty = returnQty;
353
        this.returnQty = returnQty;
356
	}
354
    }
357
 
355
 
358
	public Float getIgstRate() {
356
    public Float getIgstRate() {
359
		return igstRate;
357
        return igstRate;
360
	}
358
    }
361
 
359
 
362
	public void setIgstRate(Float igstRate) {
360
    public void setIgstRate(Float igstRate) {
363
		this.igstRate = igstRate;
361
        this.igstRate = igstRate;
364
	}
362
    }
365
 
363
 
366
	public Float getCgstRate() {
364
    public Float getCgstRate() {
367
		return cgstRate;
365
        return cgstRate;
368
	}
366
    }
369
 
367
 
370
	public void setCgstRate(Float cgstRate) {
368
    public void setCgstRate(Float cgstRate) {
371
		this.cgstRate = cgstRate;
369
        this.cgstRate = cgstRate;
372
	}
370
    }
373
 
371
 
374
	public Float getSgstRate() {
372
    public Float getSgstRate() {
375
		return sgstRate;
373
        return sgstRate;
376
	}
374
    }
377
 
375
 
378
	public void setSgstRate(Float sgstRate) {
376
    public void setSgstRate(Float sgstRate) {
379
		this.sgstRate = sgstRate;
377
        this.sgstRate = sgstRate;
380
	}
378
    }
381
 
379
 
382
	public String getHsnCode() {
380
    public String getHsnCode() {
383
		return hsnCode;
381
        return hsnCode;
384
	}
382
    }
385
 
383
 
386
	public void setHsnCode(String hsnCode) {
384
    public void setHsnCode(String hsnCode) {
387
		this.hsnCode = hsnCode;
385
        this.hsnCode = hsnCode;
388
	}
386
    }
389
 
387
 
390
	public LocalDateTime getDamagedExpiryTimestamp() {
388
    public LocalDateTime getDamagedExpiryTimestamp() {
391
		return damagedExpiryTimestamp;
389
        return damagedExpiryTimestamp;
392
	}
390
    }
393
 
391
 
394
	public void setDamagedExpiryTimestamp(LocalDateTime damagedExpiryTimestamp) {
392
    public void setDamagedExpiryTimestamp(LocalDateTime damagedExpiryTimestamp) {
395
		this.damagedExpiryTimestamp = damagedExpiryTimestamp;
393
        this.damagedExpiryTimestamp = damagedExpiryTimestamp;
396
	}
394
    }
397
 
395
 
398
	public Item getItem() {
396
    public Item getItem() {
399
		return item;
397
        return item;
400
	}
398
    }
401
 
399
 
402
	public void setItem(Item item) {
400
    public void setItem(Item item) {
403
		this.item = item;
401
        this.item = item;
404
	}
402
    }
405
 
403
 
406
 
404
 
407
	@Override
405
    @Override
408
	public int hashCode() {
406
    public int hashCode() {
409
		final int prime = 31;
407
        final int prime = 31;
410
		int result = 1;
408
        int result = 1;
411
		result = prime * result + ((id == null) ? 0 : id.hashCode());
409
        result = prime * result + ((id == null) ? 0 : id.hashCode());
412
		return result;
410
        return result;
413
	}
411
    }
414
 
412
 
415
	@Override
413
    @Override
416
	public boolean equals(Object obj) {
414
    public boolean equals(Object obj) {
417
		if (this == obj)
415
        if (this == obj)
418
			return true;
416
            return true;
419
		if (obj == null)
417
        if (obj == null)
420
			return false;
418
            return false;
421
		if (getClass() != obj.getClass())
419
        if (getClass() != obj.getClass())
422
			return false;
420
            return false;
423
		LineItem other = (LineItem) obj;
421
        LineItem other = (LineItem) obj;
424
		if (id == null) {
422
        if (id == null) {
425
			if (other.id != null)
423
            if (other.id != null)
426
				return false;
424
                return false;
427
		} else if (!id.equals(other.id))
425
        } else if (!id.equals(other.id))
428
			return false;
426
            return false;
429
		return true;
427
        return true;
430
	}
428
    }
431
 
429
 
432
	@Override
430
    @Override
433
	public String toString() {
431
    public String toString() {
434
		return "LineItem [id=" + id + ", itemId=" + itemId + ", productGoup=" + productGoup + ", brand=" + brand
432
        return "LineItem [id=" + id + ", itemId=" + itemId + ", productGoup=" + productGoup + ", brand=" + brand + ", modelNumber=" + modelNumber + ", modelName=" + modelName + ", color=" + color + ", extraInfo=" + extraInfo + ", quantity=" + quantity + ", mrp=" + mrp + ", unitPrice=" + unitPrice + ", unitWeight=" + unitWeight + ", totalPrice=" + totalPrice + ", transferPrice=" + transferPrice + ", totalWeight=" + totalWeight + ", orderId=" + orderId + ", imeiNumber=" + imeiNumber + ", itemNumber=" + itemNumber + ", dealText=" + dealText + ", warrantyExpiryTimestamp=" + warrantyExpiryTimestamp + ", serialNumber=" + ", nlc=" + nlc + ", logisticsCost=" + logisticsCost + ", codCollectionCharges=" + codCollectionCharges + ", returnQty=" + returnQty + ", igstRate=" + igstRate + ", cgstRate=" + cgstRate + ", sgstRate=" + sgstRate + ", hsnCode=" + hsnCode + ", damagedExpiryTimestamp=" + damagedExpiryTimestamp + ", item=" + item + "]";
435
				+ ", modelNumber=" + modelNumber + ", modelName=" + modelName + ", color=" + color + ", extraInfo="
433
    }
436
				+ extraInfo + ", quantity=" + quantity + ", mrp=" + mrp + ", unitPrice=" + unitPrice + ", unitWeight="
-
 
437
				+ unitWeight + ", totalPrice=" + totalPrice + ", transferPrice=" + transferPrice + ", totalWeight="
-
 
438
				+ totalWeight + ", orderId=" + orderId + ", imeiNumber=" + imeiNumber + ", itemNumber=" + itemNumber
-
 
439
				+ ", dealText=" + dealText + ", warrantyExpiryTimestamp=" + warrantyExpiryTimestamp + ", serialNumber="
-
 
440
				+ ", nlc=" + nlc + ", logisticsCost=" + logisticsCost
-
 
441
				+ ", codCollectionCharges=" + codCollectionCharges + ", returnQty=" + returnQty + ", igstRate="
-
 
442
				+ igstRate + ", cgstRate=" + cgstRate + ", sgstRate=" + sgstRate + ", hsnCode=" + hsnCode
-
 
443
				+ ", damagedExpiryTimestamp=" + damagedExpiryTimestamp + ", item=" + item + "]";
-
 
444
	}
-
 
445
 
434
 
446
}
435
}
447
436