Subversion Repositories SmartDukaan

Rev

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

Rev 31773 Rev 31821
Line 102... Line 102...
102
	private String hsnCode;
102
	private String hsnCode;
103
 
103
 
104
	@Column(name = "sellingPrice")
104
	@Column(name = "sellingPrice")
105
	private Float sellingPrice;
105
	private Float sellingPrice;
106
 
106
 
-
 
107
	@Column
-
 
108
	private Float mrp;
-
 
109
 
107
	public String getProductGroup() {
110
	public String getProductGroup() {
108
		return productGroup;
111
		return productGroup;
109
	}
112
	}
110
 
113
 
111
	public void setProductGroup(String productGroup) {
114
	public void setProductGroup(String productGroup) {
Line 284... Line 287...
284
			return lowerCaseColor.equals("any color") || lowerCaseColor.equals("f_any color") || lowerCaseColor.equals("any colour") || lowerCaseColor.equals("f_any colour");
287
			return lowerCaseColor.equals("any color") || lowerCaseColor.equals("f_any color") || lowerCaseColor.equals("any colour") || lowerCaseColor.equals("f_any colour");
285
		}
288
		}
286
		return false;
289
		return false;
287
	}
290
	}
288
 
291
 
-
 
292
	public Float getMrp() {
-
 
293
		return mrp;
-
 
294
	}
-
 
295
 
-
 
296
	public void setMrp(Float mrp) {
-
 
297
		this.mrp = mrp;
-
 
298
	}
289
}
299
}
290
300