Subversion Repositories SmartDukaan

Rev

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

Rev 35912 Rev 35916
Line 22... Line 22...
22
	private BigDecimal totaldue;
22
	private BigDecimal totaldue;
23
	private double walletAmount;
23
	private double walletAmount;
24
	private BigDecimal overdueRate;
24
	private BigDecimal overdueRate;
25
	private BigDecimal penaltyRate;
25
	private BigDecimal penaltyRate;
26
	private List<String> creditTerms;
26
	private List<String> creditTerms;
-
 
27
	private String partnerType;
27
 
28
 
28
	public BigDecimal getUtilizationAmount() {
29
	public BigDecimal getUtilizationAmount() {
29
		return utilizationAmount;
30
		return utilizationAmount;
30
	}
31
	}
31
 
32
 
Line 174... Line 175...
174
 
175
 
175
	public void setCreditTerms(List<String> creditTerms) {
176
	public void setCreditTerms(List<String> creditTerms) {
176
		this.creditTerms = creditTerms;
177
		this.creditTerms = creditTerms;
177
	}
178
	}
178
 
179
 
-
 
180
	public String getPartnerType() {
-
 
181
		return partnerType;
-
 
182
	}
-
 
183
 
-
 
184
	public void setPartnerType(String partnerType) {
-
 
185
		this.partnerType = partnerType;
-
 
186
	}
-
 
187
 
179
}
188
}