Subversion Repositories SmartDukaan

Rev

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

Rev 25209 Rev 27878
Line 116... Line 116...
116
	
116
	
117
	@Column(name = "codCollectionCharges")
117
	@Column(name = "codCollectionCharges")
118
	private Float codCollectionCharges;
118
	private Float codCollectionCharges;
119
	
119
	
120
	@Column(name = "returnQty")
120
	@Column(name = "returnQty")
121
	private Float returnQty;
121
	private int returnQty;
122
	
122
	
123
	@Column(name = "igstRate")
123
	@Column(name = "igstRate")
124
	private Float igstRate;
124
	private Float igstRate;
125
	
125
	
126
	@Column(name = "cgstRate")
126
	@Column(name = "cgstRate")
Line 328... Line 328...
328
		return codCollectionCharges;
328
		return codCollectionCharges;
329
	}
329
	}
330
	public void setCodCollectionCharges(Float codCollectionCharges) {
330
	public void setCodCollectionCharges(Float codCollectionCharges) {
331
		this.codCollectionCharges = codCollectionCharges;
331
		this.codCollectionCharges = codCollectionCharges;
332
	}
332
	}
333
	public Float getReturnQty() {
333
	public int getReturnQty() {
334
		return returnQty;
334
		return returnQty;
335
	}
335
	}
336
	public void setReturnQty(Float returnQty) {
336
	public void setReturnQty(int returnQty) {
337
		this.returnQty = returnQty;
337
		this.returnQty = returnQty;
338
	}
338
	}
339
	public Float getIgstRate() {
339
	public Float getIgstRate() {
340
		return igstRate;
340
		return igstRate;
341
	}
341
	}