Subversion Repositories SmartDukaan

Rev

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

Rev 3359 Rev 3361
Line 38... Line 38...
38
    private String bestDealsText;
38
    private String bestDealsText;
39
    private Double bestDealsValue;
39
    private Double bestDealsValue;
40
    private Long bestSellingRank;
40
    private Long bestSellingRank;
41
    private boolean defaultForEntity, risky;
41
    private boolean defaultForEntity, risky;
42
    private Integer expectedDelay;
42
    private Integer expectedDelay;
43
    private Long preferredWarehouse;
43
    private String preferredWarehouse;
44
 
44
 
45
    private Map<String, String> otherInfo;
45
    private Map<String, String> otherInfo;
46
    private Map<Long, Long> availability;
46
    private Map<Long, Long> availability;
47
    
47
    
48
    private Map<Long, VendorPricings> vendorPricesMap;
48
    private Map<Long, VendorPricings> vendorPricesMap;
Line 65... Line 65...
65
            Long addedOn, Long startDate, Long retireDate, Long updatedOn,
65
            Long addedOn, Long startDate, Long retireDate, Long updatedOn,
66
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
66
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
67
            Map<String, String> otherInfo,
67
            Map<String, String> otherInfo,
68
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
68
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
69
            Integer expectedDelay,
69
            Integer expectedDelay,
70
            Long prefferedWarehouse,
70
            String prefferedWarehouse,
71
            Map<Long, Long> availability, Map<Long,VendorPricings> vendorPricesMap, Map<String, VendorItemMapping> vendorKeysMap) {
71
            Map<Long, Long> availability, Map<Long,VendorPricings> vendorPricesMap, Map<String, VendorItemMapping> vendorKeysMap) {
72
        this();
72
        this();
73
        this.id = id;
73
        this.id = id;
74
        this.vendorCategory = vendorCategory;
74
        this.vendorCategory = vendorCategory;
75
        this.productGroup = productGroup;
75
        this.productGroup = productGroup;
Line 338... Line 338...
338
 
338
 
339
    public Integer getExpectedDelay() {
339
    public Integer getExpectedDelay() {
340
        return expectedDelay;
340
        return expectedDelay;
341
    }
341
    }
342
 
342
 
343
    public void setPreferredWarehouse(Long preferredWarehouse) {
343
    public void setPreferredWarehouse(String preferredWarehouse) {
344
        this.preferredWarehouse = preferredWarehouse;
344
        this.preferredWarehouse = preferredWarehouse;
345
    }
345
    }
346
 
346
 
347
    public Long getPreferredWarehouse() {
347
    public String getPreferredWarehouse() {
348
        return preferredWarehouse;
348
        return preferredWarehouse;
349
    }
349
    }
350
 
350
 
351
    public Map<String, String> getOtherInfo() {
351
    public Map<String, String> getOtherInfo() {
352
        return otherInfo;
352
        return otherInfo;