Subversion Repositories SmartDukaan

Rev

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

Rev 4423 Rev 4431
Line 44... Line 44...
44
    private String defaultWarehouse;
44
    private String defaultWarehouse;
45
    
45
    
46
    
46
    
47
 
47
 
48
    private Map<String, String> otherInfo;
48
    private Map<String, String> otherInfo;
49
    private Map<Long, Long> availability;
49
    private Map<Long, ItemInventory> itemInventory;
50
    
50
    
51
    private Map<Long, VendorPricings> vendorPricesMap;
51
    private Map<Long, VendorPricings> vendorPricesMap;
52
    private Map<String, VendorItemMapping> vendorKeysMap;
52
    private Map<String, VendorItemMapping> vendorKeysMap;
53
    private Map<Long, SourcePricings> sourcePricesMap;
53
    private Map<Long, SourcePricings> sourcePricesMap;
54
    private Map<Long, Item> similarItems;
54
    private Map<Long, Item> similarItems;
Line 71... Line 71...
71
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
71
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
72
            Map<String, String> otherInfo,
72
            Map<String, String> otherInfo,
73
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
73
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
74
            Integer expectedDelay,
74
            Integer expectedDelay,
75
            String prefferedWarehouse, String defaultWarehouse, boolean warehouseStickiness,
75
            String prefferedWarehouse, String defaultWarehouse, boolean warehouseStickiness,
76
            Map<Long, Long> availability, 
76
            Map<Long, ItemInventory> itemInventory,
77
            Map<Long,VendorPricings> vendorPricesMap, 
77
            Map<Long,VendorPricings> vendorPricesMap, 
78
            Map<String, VendorItemMapping> vendorKeysMap, 
78
            Map<String, VendorItemMapping> vendorKeysMap, 
79
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems) {
79
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems) {
80
        this();
80
        this();
81
        this.id = id;
81
        this.id = id;
Line 110... Line 110...
110
        this.expectedDelay = expectedDelay;
110
        this.expectedDelay = expectedDelay;
111
        this.preferredWarehouse = prefferedWarehouse;
111
        this.preferredWarehouse = prefferedWarehouse;
112
        this.defaultWarehouse = defaultWarehouse;
112
        this.defaultWarehouse = defaultWarehouse;
113
        this.warehouseStickiness = warehouseStickiness;
113
        this.warehouseStickiness = warehouseStickiness;
114
        
114
        
115
        this.availability = availability;
115
        this.itemInventory = itemInventory;
116
        
116
        
117
        this.vendorPricesMap = vendorPricesMap;
117
        this.vendorPricesMap = vendorPricesMap;
118
        this.vendorKeysMap = vendorKeysMap;
118
        this.vendorKeysMap = vendorKeysMap;
119
        this.sourcePricesMap = sourcePricesMap;
119
        this.sourcePricesMap = sourcePricesMap;
120
        this.similarItems = similarItems;
120
        this.similarItems = similarItems;
Line 366... Line 366...
366
 
366
 
367
    public void setOtherInfo(Map<String, String> otherInfo) {
367
    public void setOtherInfo(Map<String, String> otherInfo) {
368
        this.otherInfo = otherInfo;
368
        this.otherInfo = otherInfo;
369
    }
369
    }
370
 
370
 
371
    public Map<Long, Long> getAvailability() {
-
 
372
        return availability;
-
 
373
    }
-
 
374
 
-
 
375
    public void setAvailability(Map<Long, Long> availability) {
-
 
376
        this.availability = availability;
-
 
377
    }
-
 
378
 
-
 
379
    public Map<Long, VendorPricings> getVendorPricesMap() {
371
	public Map<Long, VendorPricings> getVendorPricesMap() {
380
        return vendorPricesMap;
372
        return vendorPricesMap;
381
    }
373
    }
382
 
374
 
383
    public void setVendorPricesMap(Map<Long, VendorPricings> vendorPricesMap) {
375
    public void setVendorPricesMap(Map<Long, VendorPricings> vendorPricesMap) {
384
        this.vendorPricesMap = vendorPricesMap;
376
        this.vendorPricesMap = vendorPricesMap;
Line 422... Line 414...
422
 
414
 
423
    public Map<Long, Item> getSimilarItems() {
415
    public Map<Long, Item> getSimilarItems() {
424
        return similarItems;
416
        return similarItems;
425
    }
417
    }
426
 
418
 
-
 
419
	public void setItemInventory(Map<Long, ItemInventory> itemInventory) {
-
 
420
		this.itemInventory = itemInventory;
-
 
421
	}
-
 
422
 
-
 
423
	public Map<Long, ItemInventory> getItemInventory() {
-
 
424
		return itemInventory;
-
 
425
	}
-
 
426
 
427
}
427
}