Subversion Repositories SmartDukaan

Rev

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

Rev 32690 Rev 36977
Line 88... Line 88...
88
	private float tp;
88
	private float tp;
89
 
89
 
90
	@Column(name = "nlc")
90
	@Column(name = "nlc")
91
	private float nlc;
91
	private float nlc;
92
 
92
 
-
 
93
	@Column(name = "deduct_on_hike")
-
 
94
	private boolean deductOnHike;
-
 
95
 
93
	@Transient
96
	@Transient
94
	private String description;
97
	private String description;
95
 
98
 
96
	public String getDescription() {
99
	public String getDescription() {
97
		return description;
100
		return description;
Line 139... Line 142...
139
 
142
 
140
	public void setNlc(float nlc) {
143
	public void setNlc(float nlc) {
141
		this.nlc = nlc;
144
		this.nlc = nlc;
142
	}
145
	}
143
 
146
 
-
 
147
	public boolean isDeductOnHike() {
-
 
148
		return deductOnHike;
-
 
149
	}
-
 
150
 
-
 
151
	public void setDeductOnHike(boolean deductOnHike) {
-
 
152
		this.deductOnHike = deductOnHike;
-
 
153
	}
-
 
154
 
144
 
155
 
145
	@Column(name = "credit_note_number")
156
	@Column(name = "credit_note_number")
146
	private String creditNoteNumber;
157
	private String creditNoteNumber;
147
 
158
 
148
	@Convert(converter = LocalDateTimeAttributeConverter.class)
159
	@Convert(converter = LocalDateTimeAttributeConverter.class)