Subversion Repositories SmartDukaan

Rev

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

Rev 4762 Rev 5217
Line 29... Line 29...
29
    private Double weight;
29
    private Double weight;
30
    private Long addedOn;
30
    private Long addedOn;
31
    private Long updatedOn;
31
    private Long updatedOn;
32
    private Long startDate;
32
    private Long startDate;
33
    private Long retireDate;
33
    private Long retireDate;
-
 
34
    private Long comingSoonStartDate;
-
 
35
    private Long expectedArrivalDate;
34
    private String itemStatus;
36
    private String itemStatus;
35
    private String itemStatusDesc;
37
    private String itemStatusDesc;
36
    private Integer itemStatusValue;
38
    private Integer itemStatusValue;
37
    private String bestDealsText;
39
    private String bestDealsText;
38
    private Double bestDealsValue;
40
    private Double bestDealsValue;
Line 65... Line 67...
65
            Long featureId,
67
            Long featureId,
66
            String featureDescription, 
68
            String featureDescription, 
67
            Double mrp,
69
            Double mrp,
68
            Double sellingPrice,
70
            Double sellingPrice,
69
            Double weight,
71
            Double weight,
70
            Long addedOn, Long startDate, Long retireDate, Long updatedOn,
72
            Long addedOn, Long startDate, Long comingSoonStartDate, Long expectedArrivalDate, Long retireDate, Long updatedOn,
71
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
73
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
72
            Map<String, String> otherInfo,
74
            Map<String, String> otherInfo,
73
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
75
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
74
            Integer expectedDelay,
76
            Integer expectedDelay,
75
            Long prefferedWarehouse, Long defaultWarehouse, boolean warehouseStickiness,
77
            Long prefferedWarehouse, Long defaultWarehouse, boolean warehouseStickiness,
Line 94... Line 96...
94
        this.mrp = mrp;
96
        this.mrp = mrp;
95
        this.sellingPrice = sellingPrice;
97
        this.sellingPrice = sellingPrice;
96
        this.weight = weight;
98
        this.weight = weight;
97
        this.addedOn = addedOn;
99
        this.addedOn = addedOn;
98
        this.startDate = startDate;
100
        this.startDate = startDate;
-
 
101
        this.comingSoonStartDate = comingSoonStartDate;
-
 
102
        this.expectedArrivalDate = expectedArrivalDate;
99
        this.retireDate = retireDate;
103
        this.retireDate = retireDate;
100
        this.updatedOn = updatedOn;
104
        this.updatedOn = updatedOn;
101
        this.itemStatus = itemStatus;
105
        this.itemStatus = itemStatus;
102
        this.itemStatusValue = itemStatusValue;
106
        this.itemStatusValue = itemStatusValue;
103
        this.itemStatusDesc = itemStatusDesc;
107
        this.itemStatusDesc = itemStatusDesc;
Line 271... Line 275...
271
 
275
 
272
    public void setRetireDate(Long retireDate) {
276
    public void setRetireDate(Long retireDate) {
273
        this.retireDate = retireDate;
277
        this.retireDate = retireDate;
274
    }
278
    }
275
 
279
 
-
 
280
    public Long getComingSoonStartDate() {
-
 
281
    	return this.comingSoonStartDate;
-
 
282
    }
-
 
283
    
-
 
284
    public void setComingSoonStartDate(Long comingSoonStartDate) {
-
 
285
    	this.comingSoonStartDate = comingSoonStartDate;
-
 
286
    }
-
 
287
 
-
 
288
    public Long getExpectedArrivalDate() {
-
 
289
    	return this.expectedArrivalDate;
-
 
290
    }
-
 
291
    
-
 
292
    public void setExpectedArrivalDate(Long expectedArrivalDate) {
-
 
293
    	this.expectedArrivalDate = expectedArrivalDate;
-
 
294
    }
-
 
295
 
276
    public String getItemStatus() {
296
    public String getItemStatus() {
277
        return itemStatus;
297
        return itemStatus;
278
    }
298
    }
279
 
299
 
280
    public void setItemStatus(String itemStatus) {
300
    public void setItemStatus(String itemStatus) {