Subversion Repositories SmartDukaan

Rev

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

Rev 5309 Rev 5384
Line 37... Line 37...
37
    private String itemStatusDesc;
37
    private String itemStatusDesc;
38
    private Integer itemStatusValue;
38
    private Integer itemStatusValue;
39
    private String bestDealsText;
39
    private String bestDealsText;
40
    private Double bestDealsValue;
40
    private Double bestDealsValue;
41
    private Long bestSellingRank;
41
    private Long bestSellingRank;
42
    private boolean defaultForEntity, risky, warehouseStickiness;
42
    private boolean defaultForEntity, risky, warehouseStickiness, hasItemNo, itemType;
43
    private Integer expectedDelay;
43
    private Integer expectedDelay;
44
    private Long preferredWarehouse;
-
 
45
    private Long defaultWarehouse;
-
 
46
    private Long preferredVendor;
44
    private Long preferredVendor;
47
    
45
    
48
    
46
    
49
 
47
 
50
    private Map<Long, ItemInventory> itemInventory;
48
    private Map<Long, ItemInventory> itemInventory;
Line 70... Line 68...
70
            Double weight,
68
            Double weight,
71
            Long addedOn, Long startDate, Long comingSoonStartDate, Long expectedArrivalDate, Long retireDate, Long updatedOn,
69
            Long addedOn, Long startDate, Long comingSoonStartDate, Long expectedArrivalDate, Long retireDate, Long updatedOn,
72
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
70
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
73
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
71
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
74
            Integer expectedDelay,
72
            Integer expectedDelay,
75
            Long prefferedWarehouse, Long defaultWarehouse, boolean warehouseStickiness,
73
            boolean warehouseStickiness, boolean hasItemNo, boolean itemType,
76
            Long prefferedVendor,
74
            Long prefferedVendor,
77
            Map<Long, ItemInventory> itemInventory,
75
            Map<Long, ItemInventory> itemInventory,
78
            Map<Long,VendorPricings> vendorPricesMap, 
76
            Map<Long,VendorPricings> vendorPricesMap, 
79
            Map<String, VendorItemMapping> vendorKeysMap, 
77
            Map<String, VendorItemMapping> vendorKeysMap, 
80
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems) {
78
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems) {
Line 107... Line 105...
107
        this.bestDealsValue = bestDealsValue;
105
        this.bestDealsValue = bestDealsValue;
108
        this.bestSellingRank = bestSellingRank;
106
        this.bestSellingRank = bestSellingRank;
109
        this.defaultForEntity = defaultForEntity;
107
        this.defaultForEntity = defaultForEntity;
110
        this.risky = risky;
108
        this.risky = risky;
111
        this.expectedDelay = expectedDelay;
109
        this.expectedDelay = expectedDelay;
112
        this.preferredWarehouse = prefferedWarehouse;
-
 
113
        this.defaultWarehouse = defaultWarehouse;
-
 
114
        this.warehouseStickiness = warehouseStickiness;
110
        this.warehouseStickiness = warehouseStickiness;
-
 
111
        this.hasItemNo = hasItemNo;
-
 
112
        this.setItemType(itemType);
115
        this.preferredVendor = prefferedVendor;
113
        this.preferredVendor = prefferedVendor;
116
        
114
        
117
        this.itemInventory = itemInventory;
115
        this.itemInventory = itemInventory;
118
        
116
        
119
        this.vendorPricesMap = vendorPricesMap;
117
        this.vendorPricesMap = vendorPricesMap;
Line 360... Line 358...
360
 
358
 
361
    public Integer getExpectedDelay() {
359
    public Integer getExpectedDelay() {
362
        return expectedDelay;
360
        return expectedDelay;
363
    }
361
    }
364
 
362
 
365
    public void setPreferredWarehouse(Long preferredWarehouse) {
-
 
366
        this.preferredWarehouse = preferredWarehouse;
-
 
367
    }
-
 
368
 
-
 
369
    public Long getPreferredWarehouse() {
-
 
370
        return preferredWarehouse;
-
 
371
    }
-
 
372
 
-
 
373
	public Map<Long, VendorPricings> getVendorPricesMap() {
363
	public Map<Long, VendorPricings> getVendorPricesMap() {
374
        return vendorPricesMap;
364
        return vendorPricesMap;
375
    }
365
    }
376
 
366
 
377
    public void setVendorPricesMap(Map<Long, VendorPricings> vendorPricesMap) {
367
    public void setVendorPricesMap(Map<Long, VendorPricings> vendorPricesMap) {
Line 400... Line 390...
400
 
390
 
401
    public void setWarehouseStickiness(boolean warehouseStickiness) {
391
    public void setWarehouseStickiness(boolean warehouseStickiness) {
402
        this.warehouseStickiness = warehouseStickiness;
392
        this.warehouseStickiness = warehouseStickiness;
403
    }
393
    }
404
 
394
 
405
    public Long getDefaultWarehouse() {
-
 
406
        return defaultWarehouse;
-
 
407
    }
-
 
408
 
-
 
409
    public void setDefaultWarehouse(Long defaultWarehouse) {
-
 
410
        this.defaultWarehouse = defaultWarehouse;
-
 
411
    }
-
 
412
 
-
 
413
    public void setSimilarItems(Map<Long, Item> similarItems) {
395
    public void setSimilarItems(Map<Long, Item> similarItems) {
414
        this.similarItems = similarItems;
396
        this.similarItems = similarItems;
415
    }
397
    }
416
 
398
 
417
    public Map<Long, Item> getSimilarItems() {
399
    public Map<Long, Item> getSimilarItems() {
Line 432... Line 414...
432
 
414
 
433
	public Long getPreferredVendor() {
415
	public Long getPreferredVendor() {
434
		return preferredVendor;
416
		return preferredVendor;
435
	}
417
	}
436
 
418
 
-
 
419
 
-
 
420
	public void setHasItemNo(boolean hasItemNo) {
-
 
421
		this.hasItemNo = hasItemNo;
-
 
422
	}
-
 
423
 
-
 
424
	public boolean isHasItemNo() {
-
 
425
		return hasItemNo;
-
 
426
	}
-
 
427
 
-
 
428
	public void setItemType(boolean itemType) {
-
 
429
		this.itemType = itemType;
-
 
430
	}
-
 
431
 
-
 
432
	public boolean isItemType() {
-
 
433
		return itemType;
-
 
434
	}
-
 
435
 
437
}
436
}