Subversion Repositories SmartDukaan

Rev

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

Rev 5427 Rev 5460
Line 38... Line 38...
38
    private String itemStatusDesc;
38
    private String itemStatusDesc;
39
    private Integer itemStatusValue;
39
    private Integer itemStatusValue;
40
    private String bestDealsText;
40
    private String bestDealsText;
41
    private Double bestDealsValue;
41
    private Double bestDealsValue;
42
    private Long bestSellingRank;
42
    private Long bestSellingRank;
43
    private boolean defaultForEntity, risky, warehouseStickiness, hasItemNo, itemType;
43
    private boolean defaultForEntity, risky, warehouseStickiness, hasItemNo, itemType, clearance;
44
    private Integer expectedDelay;
44
    private Integer expectedDelay;
45
    private Long preferredVendor;
45
    private Long preferredVendor;
46
    private List<Long> sameItemsWithDifferentColors;
46
    private List<Long> sameItemsWithDifferentColors;
47
    
47
    
48
    
48
    
Line 70... Line 70...
70
            Double weight,
70
            Double weight,
71
            Long addedOn, Long startDate, Long comingSoonStartDate, Long expectedArrivalDate, Long retireDate, Long updatedOn,
71
            Long addedOn, Long startDate, Long comingSoonStartDate, Long expectedArrivalDate, Long retireDate, Long updatedOn,
72
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
72
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
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
            boolean warehouseStickiness, boolean hasItemNo, boolean itemType,
75
            boolean warehouseStickiness, boolean hasItemNo, boolean itemType, boolean clearance,
76
            Long prefferedVendor,
76
            Long prefferedVendor,
77
            Map<Long, ItemInventory> itemInventory,
77
            Map<Long, ItemInventory> itemInventory,
78
            Map<Long,VendorPricings> vendorPricesMap, 
78
            Map<Long,VendorPricings> vendorPricesMap, 
79
            Map<String, VendorItemMapping> vendorKeysMap, 
79
            Map<String, VendorItemMapping> vendorKeysMap, 
80
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems) {
80
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems) {
Line 110... Line 110...
110
        this.risky = risky;
110
        this.risky = risky;
111
        this.expectedDelay = expectedDelay;
111
        this.expectedDelay = expectedDelay;
112
        this.warehouseStickiness = warehouseStickiness;
112
        this.warehouseStickiness = warehouseStickiness;
113
        this.hasItemNo = hasItemNo;
113
        this.hasItemNo = hasItemNo;
114
        this.setItemType(itemType);
114
        this.setItemType(itemType);
-
 
115
        this.setClearance(clearance);
115
        this.preferredVendor = prefferedVendor;
116
        this.preferredVendor = prefferedVendor;
116
        
117
        
117
        this.itemInventory = itemInventory;
118
        this.itemInventory = itemInventory;
118
        
119
        
119
        this.vendorPricesMap = vendorPricesMap;
120
        this.vendorPricesMap = vendorPricesMap;
Line 442... Line 443...
442
 
443
 
443
	public boolean isItemType() {
444
	public boolean isItemType() {
444
		return itemType;
445
		return itemType;
445
	}
446
	}
446
 
447
 
-
 
448
	public void setClearance(boolean clearance) {
-
 
449
		this.clearance = clearance;
-
 
450
	}
-
 
451
 
-
 
452
	public boolean isClearance() {
-
 
453
		return clearance;
-
 
454
	}
-
 
455
 
447
}
456
}