Subversion Repositories SmartDukaan

Rev

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

Rev 22009 Rev 22859
Line 118... Line 118...
118
	private Float codCollectionCharges;
118
	private Float codCollectionCharges;
119
	
119
	
120
	@Column(name = "returnQty")
120
	@Column(name = "returnQty")
121
	private Float returnQty;
121
	private Float returnQty;
122
	
122
	
-
 
123
	@Column(name = "igstRate")
-
 
124
	private float igstRate;
-
 
125
	
-
 
126
	@Column(name = "cgstRate")
-
 
127
	private float cgstRate;
-
 
128
	
-
 
129
	@Column(name = "sgstRate")
-
 
130
	private float sgstRate;
-
 
131
	
-
 
132
	@Column(name = "hsnCode")
-
 
133
	private String hsnCode;
-
 
134
	
123
	@Convert(converter = LocalDateTimeAttributeConverter.class)
135
	@Convert(converter = LocalDateTimeAttributeConverter.class)
124
	@Column(name = "damaged_expiry_timestamp")
136
	@Column(name = "damaged_expiry_timestamp")
125
	private LocalDateTime damagedExpiryTimestamp;
137
	private LocalDateTime damagedExpiryTimestamp;
126
	
138
	
127
	@OneToOne(cascade=CascadeType.ALL,fetch=FetchType.LAZY)
139
	@OneToOne(cascade=CascadeType.ALL,fetch=FetchType.LAZY)
Line 284... Line 296...
284
		return returnQty;
296
		return returnQty;
285
	}
297
	}
286
	public void setReturnQty(Float returnQty) {
298
	public void setReturnQty(Float returnQty) {
287
		this.returnQty = returnQty;
299
		this.returnQty = returnQty;
288
	}
300
	}
-
 
301
	public float getIgstRate() {
-
 
302
		return igstRate;
-
 
303
	}
-
 
304
	public void setIgstRate(float igstRate) {
-
 
305
		this.igstRate = igstRate;
-
 
306
	}
-
 
307
	public float getCgstRate() {
-
 
308
		return cgstRate;
-
 
309
	}
-
 
310
	public void setCgstRate(float cgstRate) {
-
 
311
		this.cgstRate = cgstRate;
-
 
312
	}
-
 
313
	public float getSgstRate() {
-
 
314
		return sgstRate;
-
 
315
	}
-
 
316
	public void setSgstRate(float sgstRate) {
-
 
317
		this.sgstRate = sgstRate;
-
 
318
	}
-
 
319
	public String getHsnCode() {
-
 
320
		return hsnCode;
-
 
321
	}
-
 
322
	public void setHsnCode(String hsnCode) {
-
 
323
		this.hsnCode = hsnCode;
-
 
324
	}
289
	public LocalDateTime getDamagedExpiryTimestamp() {
325
	public LocalDateTime getDamagedExpiryTimestamp() {
290
		return damagedExpiryTimestamp;
326
		return damagedExpiryTimestamp;
291
	}
327
	}
292
	public void setDamagedExpiryTimestamp(LocalDateTime damagedExpiryTimestamp) {
328
	public void setDamagedExpiryTimestamp(LocalDateTime damagedExpiryTimestamp) {
293
		this.damagedExpiryTimestamp = damagedExpiryTimestamp;
329
		this.damagedExpiryTimestamp = damagedExpiryTimestamp;
Line 331... Line 367...
331
				+ extraInfo + ", quantity=" + quantity + ", mrp=" + mrp + ", unitPrice=" + unitPrice + ", unitWeight="
367
				+ extraInfo + ", quantity=" + quantity + ", mrp=" + mrp + ", unitPrice=" + unitPrice + ", unitWeight="
332
				+ unitWeight + ", totalPrice=" + totalPrice + ", transferPrice=" + transferPrice + ", totalWeight="
368
				+ unitWeight + ", totalPrice=" + totalPrice + ", transferPrice=" + transferPrice + ", totalWeight="
333
				+ totalWeight + ", orderId=" + orderId + ", imeiNumber=" + imeiNumber + ", itemNumber=" + itemNumber
369
				+ totalWeight + ", orderId=" + orderId + ", imeiNumber=" + imeiNumber + ", itemNumber=" + itemNumber
334
				+ ", dealText=" + dealText + ", warrantyExpiryTimestamp=" + warrantyExpiryTimestamp + ", serialNumber="
370
				+ ", dealText=" + dealText + ", warrantyExpiryTimestamp=" + warrantyExpiryTimestamp + ", serialNumber="
335
				+ serialNumber + ", vatRate=" + vatRate + ", nlc=" + nlc + ", logisticsCost=" + logisticsCost
371
				+ serialNumber + ", vatRate=" + vatRate + ", nlc=" + nlc + ", logisticsCost=" + logisticsCost
336
				+ ", codCollectionCharges=" + codCollectionCharges + ", returnQty=" + returnQty
372
				+ ", codCollectionCharges=" + codCollectionCharges + ", returnQty=" + returnQty + ", igstRate="
-
 
373
				+ igstRate + ", cgstRate=" + cgstRate + ", sgstRate=" + sgstRate + ", hsnCode=" + hsnCode
337
				+ ", damagedExpiryTimestamp=" + damagedExpiryTimestamp + ", item=" + item + "]";
374
				+ ", damagedExpiryTimestamp=" + damagedExpiryTimestamp + ", item=" + item + "]";
338
	}
375
	}
339
	
376
	
340
}
377
}
341
378