Subversion Repositories SmartDukaan

Rev

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

Rev 3558 Rev 4413
Line 36... Line 36...
36
    private String itemStatusDesc;
36
    private String itemStatusDesc;
37
    private Integer itemStatusValue;
37
    private Integer itemStatusValue;
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, warehouseStickiness;
42
    private Integer expectedDelay;
42
    private Integer expectedDelay;
43
    private String preferredWarehouse;
43
    private String preferredWarehouse;
-
 
44
    private String defaultWarehouse;
-
 
45
    
-
 
46
    
44
 
47
 
45
    private Map<String, String> otherInfo;
48
    private Map<String, String> otherInfo;
46
    private Map<Long, Long> availability;
49
    private Map<Long, Long> availability;
47
    
50
    
48
    private Map<Long, VendorPricings> vendorPricesMap;
51
    private Map<Long, VendorPricings> vendorPricesMap;
Line 66... Line 69...
66
            Long addedOn, Long startDate, Long retireDate, Long updatedOn,
69
            Long addedOn, Long startDate, Long retireDate, Long updatedOn,
67
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
70
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
68
            Map<String, String> otherInfo,
71
            Map<String, String> otherInfo,
69
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
72
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
70
            Integer expectedDelay,
73
            Integer expectedDelay,
71
            String prefferedWarehouse,
74
            String prefferedWarehouse, String defaultWarehouse, boolean warehouseStickiness,
72
            Map<Long, Long> availability, 
75
            Map<Long, Long> availability, 
73
            Map<Long,VendorPricings> vendorPricesMap, 
76
            Map<Long,VendorPricings> vendorPricesMap, 
74
            Map<String, VendorItemMapping> vendorKeysMap, 
77
            Map<String, VendorItemMapping> vendorKeysMap, 
75
            Map<Long, SourcePricings> sourcePricesMap) {
78
            Map<Long, SourcePricings> sourcePricesMap) {
76
        this();
79
        this();
Line 103... Line 106...
103
        this.bestSellingRank = bestSellingRank;
106
        this.bestSellingRank = bestSellingRank;
104
        this.defaultForEntity = defaultForEntity;
107
        this.defaultForEntity = defaultForEntity;
105
        this.risky = risky;
108
        this.risky = risky;
106
        this.expectedDelay = expectedDelay;
109
        this.expectedDelay = expectedDelay;
107
        this.preferredWarehouse = prefferedWarehouse;
110
        this.preferredWarehouse = prefferedWarehouse;
-
 
111
        this.defaultWarehouse = defaultWarehouse;
-
 
112
        this.warehouseStickiness = warehouseStickiness;
108
        
113
        
109
        this.availability = availability;
114
        this.availability = availability;
110
        
115
        
111
        this.vendorPricesMap = vendorPricesMap;
116
        this.vendorPricesMap = vendorPricesMap;
112
        this.vendorKeysMap = vendorKeysMap;
117
        this.vendorKeysMap = vendorKeysMap;
Line 391... Line 396...
391
 
396
 
392
	public Map<Long, SourcePricings> getSourcePricesMap() {
397
	public Map<Long, SourcePricings> getSourcePricesMap() {
393
		return sourcePricesMap;
398
		return sourcePricesMap;
394
	}
399
	}
395
 
400
 
-
 
401
    public boolean isWarehouseStickiness() {
-
 
402
        return warehouseStickiness;
-
 
403
    }
-
 
404
 
-
 
405
    public void setWarehouseStickiness(boolean warehouseStickiness) {
-
 
406
        this.warehouseStickiness = warehouseStickiness;
-
 
407
    }
-
 
408
 
-
 
409
    public String getDefaultWarehouse() {
-
 
410
        return defaultWarehouse;
-
 
411
    }
-
 
412
 
-
 
413
    public void setDefaultWarehouse(String defaultWarehouse) {
-
 
414
        this.defaultWarehouse = defaultWarehouse;
-
 
415
    }
-
 
416
 
396
 
417
 
397
}
418
}