Subversion Repositories SmartDukaan

Rev

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

Rev 24349 Rev 24843
Line 52... Line 52...
52
	@Column(name="grace_date")
52
	@Column(name="grace_date")
53
	private LocalDate graceDate;
53
	private LocalDate graceDate;
54
	
54
	
55
	@Column(name="grace_count")
55
	@Column(name="grace_count")
56
	private int graceCount;
56
	private int graceCount;
57
	
57
 
-
 
58
	@Column
-
 
59
	private boolean active;
58
	//Number of days to realise money.
60
	//Number of days to realise money.
59
	/*@Column(name="credit_cycle")
61
	/*@Column(name="credit_cycle")
60
	private int creditCycle;*/
62
	private int creditCycle;*/
61
	
63
	
62
	public int getGraceCount() {
64
	public int getGraceCount() {
63
		return graceCount;
65
		return graceCount;
64
	}
66
	}
-
 
67
	public boolean isActive() {
-
 
68
		return active;
-
 
69
	}
-
 
70
	public void setActive(boolean active) {
-
 
71
		this.active = active;
-
 
72
	}
65
	public void setGraceCount(int graceCount) {
73
	public void setGraceCount(int graceCount) {
66
		this.graceCount = graceCount;
74
		this.graceCount = graceCount;
67
	}
75
	}
68
	public LocalDate getGraceDate() {
76
	public LocalDate getGraceDate() {
69
		return graceDate;
77
		return graceDate;