Subversion Repositories SmartDukaan

Rev

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

Rev 6813 Rev 6838
Line 55... Line 55...
55
		this.showSellingPrice = showSellingPrice;
55
		this.showSellingPrice = showSellingPrice;
56
	}
56
	}
57
 
57
 
58
	private Integer expectedDelay;
58
	private Integer expectedDelay;
59
    private Long preferredVendor;
59
    private Long preferredVendor;
-
 
60
    private Long preferredInsurer;
60
    private List<Long> sameItemsWithDifferentColors;
61
    private List<Long> sameItemsWithDifferentColors;
61
    
62
    
62
    
63
    
63
 
64
 
64
    private Map<Long, ItemInventory> itemInventory;
65
    private Map<Long, ItemInventory> itemInventory;
Line 87... Line 88...
87
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
88
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
88
            String bestDealsText,String bestDealsDetailsText,String bestDealsDetailsLink, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
89
            String bestDealsText,String bestDealsDetailsText,String bestDealsDetailsLink, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
89
            Integer expectedDelay,
90
            Integer expectedDelay,
90
            boolean warehouseStickiness, boolean hasItemNo, boolean itemType, boolean clearance, boolean showSellingPrice,
91
            boolean warehouseStickiness, boolean hasItemNo, boolean itemType, boolean clearance, boolean showSellingPrice,
91
            Long prefferedVendor,
92
            Long prefferedVendor,
-
 
93
            Long preferredInsurer,
92
            Map<Long, ItemInventory> itemInventory,
94
            Map<Long, ItemInventory> itemInventory,
93
            Map<Long,VendorPricings> vendorPricesMap, 
95
            Map<Long,VendorPricings> vendorPricesMap, 
94
            Map<String, VendorItemMapping> vendorKeysMap, 
96
            Map<String, VendorItemMapping> vendorKeysMap, 
95
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems, Map<String, VoucherItemMapping> vouchersMap,
97
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems, Map<String, VoucherItemMapping> vouchersMap,
96
            Integer numOfDaysStock, Long minStockLevel) {
98
            Integer numOfDaysStock, Long minStockLevel) {
Line 131... Line 133...
131
        this.hasItemNo = hasItemNo;
133
        this.hasItemNo = hasItemNo;
132
        this.showSellingPrice = showSellingPrice;
134
        this.showSellingPrice = showSellingPrice;
133
        this.setItemType(itemType);
135
        this.setItemType(itemType);
134
        this.setClearance(clearance);
136
        this.setClearance(clearance);
135
        this.preferredVendor = prefferedVendor;
137
        this.preferredVendor = prefferedVendor;
136
        
138
        this.preferredInsurer = preferredInsurer;        
137
        this.itemInventory = itemInventory;
139
        this.itemInventory = itemInventory;
138
        
-
 
139
        this.vendorPricesMap = vendorPricesMap;
140
        this.vendorPricesMap = vendorPricesMap;
140
        this.vendorKeysMap = vendorKeysMap;
141
        this.vendorKeysMap = vendorKeysMap;
141
        this.sourcePricesMap = sourcePricesMap;
142
        this.sourcePricesMap = sourcePricesMap;
142
        this.similarItems = similarItems;
143
        this.similarItems = similarItems;
143
        this.vouchersMap = vouchersMap;
144
        this.vouchersMap = vouchersMap;
Line 512... Line 513...
512
	}
513
	}
513
 
514
 
514
	public String getBestDealsDetailsLink() {
515
	public String getBestDealsDetailsLink() {
515
		return bestDealsDetailsLink;
516
		return bestDealsDetailsLink;
516
	}
517
	}
-
 
518
	public Long getPreferredInsurer() {
-
 
519
		return preferredInsurer;
-
 
520
	}
-
 
521
	
-
 
522
	public void setPreferredInsurer(Long insurer) {
-
 
523
		this.preferredInsurer=insurer;
-
 
524
	}
-
 
525
 
-
 
526
 
517
 
527
 
518
}
528
}