Subversion Repositories SmartDukaan

Rev

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

Rev 2027 Rev 2066
Line 32... Line 32...
32
    private long retireDate;
32
    private long retireDate;
33
    private String itemStatus;
33
    private String itemStatus;
34
    private String bestDealsText;
34
    private String bestDealsText;
35
    private double bestDealsValue;
35
    private double bestDealsValue;
36
    
36
    
-
 
37
    private long bestSellingRank;
-
 
38
    private boolean defaultForEntity;
-
 
39
    
37
    private Map<String, String> otherInfo;
40
    private Map<String, String> otherInfo;
38
    private Map<Long, Long> availability;
41
    private Map<Long, Long> availability;
39
    
42
    
40
    private Map<Long, double[]> vendorPricings;
43
    private Map<Long, double[]> vendorPricings;
41
    
44
    
Line 51... Line 54...
51
            String featureDescription, 
54
            String featureDescription, 
52
            double mrp, double mop, double sellingPrice, double dealerPrice, double weight,
55
            double mrp, double mop, double sellingPrice, double dealerPrice, double weight,
53
            long addedOn, long startDate, long retireDate, long updatedOn,
56
            long addedOn, long startDate, long retireDate, long updatedOn,
54
            String itemStatus,
57
            String itemStatus,
55
            Map<String, String> otherInfo,
58
            Map<String, String> otherInfo,
56
            String bestDealsText, double bestDealsValue, Map<Long, Long> availability, Map<Long, double[]> vendorPricings) {
59
            String bestDealsText, double bestDealsValue, long bestSellingRank, boolean defaultForEntity, Map<Long, Long> availability, Map<Long, double[]> vendorPricings) {
57
        this();
60
        this();
58
        this.id = id;
61
        this.id = id;
59
        this.setProductGroup(productGroup);
62
        this.setProductGroup(productGroup);
60
        this.brand = brand;
63
        this.brand = brand;
61
        this.modelNumber = modelNumber;
64
        this.modelNumber = modelNumber;
Line 77... Line 80...
77
        this.updatedOn = updatedOn;
80
        this.updatedOn = updatedOn;
78
        this.itemStatus = itemStatus;
81
        this.itemStatus = itemStatus;
79
        this.otherInfo = otherInfo;
82
        this.otherInfo = otherInfo;
80
        this.bestDealsText = bestDealsText;
83
        this.bestDealsText = bestDealsText;
81
        this.bestDealsValue = bestDealsValue;
84
        this.bestDealsValue = bestDealsValue;
-
 
85
        this.bestSellingRank = bestSellingRank;
-
 
86
        this.defaultForEntity = defaultForEntity;
-
 
87
        
82
        this.availability = availability;
88
        this.availability = availability;
83
        
89
        
84
        this.vendorPricings = vendorPricings;
90
        this.vendorPricings = vendorPricings;
85
    }
91
    }
86
 
92
 
Line 126... Line 132...
126
 
132
 
127
    public long getCategory() {
133
    public long getCategory() {
128
        return category;
134
        return category;
129
    }
135
    }
130
 
136
 
131
    /*public void setCategory(long category) {
137
    public void setCategory(long category) {
132
        this.category = category;
138
        this.category = category;
133
    }*/
139
    }
134
 
140
 
135
    public String getComments() {
141
    public String getComments() {
136
        return comments;
142
        return comments;
137
    }
143
    }
138
 
144
 
Line 297... Line 303...
297
    }
303
    }
298
 
304
 
299
    public void setVendorPricings(Map<Long, double[]> vendorPricings) {
305
    public void setVendorPricings(Map<Long, double[]> vendorPricings) {
300
        this.vendorPricings = vendorPricings;
306
        this.vendorPricings = vendorPricings;
301
    }
307
    }
302
    
-
 
303
    
-
 
304
 
308
 
-
 
309
    public long getBestSellingRank() {
-
 
310
        return bestSellingRank;
-
 
311
    }
-
 
312
 
-
 
313
    public void setBestSellingRank(long bestSellingRank) {
-
 
314
        this.bestSellingRank = bestSellingRank;
-
 
315
    }
-
 
316
 
-
 
317
    public boolean isDefaultForEntity() {
-
 
318
        return defaultForEntity;
-
 
319
    }
-
 
320
 
-
 
321
    public void setDefaultForEntity(boolean defaultForEntity) {
-
 
322
        this.defaultForEntity = defaultForEntity;
-
 
323
    }
-
 
324
    
305
}
325
}