Subversion Repositories SmartDukaan

Rev

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

Rev 6838 Rev 7190
Line 44... Line 44...
44
    private String bestDealsDetailsLink;
44
    private String bestDealsDetailsLink;
45
    private Double bestDealsValue;
45
    private Double bestDealsValue;
46
    private Long bestSellingRank;
46
    private Long bestSellingRank;
47
    private Integer numOfDaysStock;
47
    private Integer numOfDaysStock;
48
    private Long minStockLevel;
48
    private Long minStockLevel;
-
 
49
    private Long freebieItemId;
49
    private boolean defaultForEntity, risky, warehouseStickiness, hasItemNo, itemType, clearance, showSellingPrice;
50
    private boolean defaultForEntity, risky, warehouseStickiness, hasItemNo, itemType, clearance, showSellingPrice;
50
    public boolean isShowSellingPrice() {
51
    public boolean isShowSellingPrice() {
51
		return showSellingPrice;
52
		return showSellingPrice;
52
	}
53
	}
53
 
54
 
Line 93... Line 94...
93
            Long preferredInsurer,
94
            Long preferredInsurer,
94
            Map<Long, ItemInventory> itemInventory,
95
            Map<Long, ItemInventory> itemInventory,
95
            Map<Long,VendorPricings> vendorPricesMap, 
96
            Map<Long,VendorPricings> vendorPricesMap, 
96
            Map<String, VendorItemMapping> vendorKeysMap, 
97
            Map<String, VendorItemMapping> vendorKeysMap, 
97
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems, Map<String, VoucherItemMapping> vouchersMap,
98
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems, Map<String, VoucherItemMapping> vouchersMap,
98
            Integer numOfDaysStock, Long minStockLevel) {
99
            Integer numOfDaysStock, Long minStockLevel, Long freebieItemId) {
99
        this();
100
        this();
100
        this.id = id;
101
        this.id = id;
101
        this.productGroup = productGroup;
102
        this.productGroup = productGroup;
102
        this.brand = brand;
103
        this.brand = brand;
103
        this.modelNumber = modelNumber;
104
        this.modelNumber = modelNumber;
Line 142... Line 143...
142
        this.sourcePricesMap = sourcePricesMap;
143
        this.sourcePricesMap = sourcePricesMap;
143
        this.similarItems = similarItems;
144
        this.similarItems = similarItems;
144
        this.vouchersMap = vouchersMap;
145
        this.vouchersMap = vouchersMap;
145
        this.numOfDaysStock = numOfDaysStock;
146
        this.numOfDaysStock = numOfDaysStock;
146
        this.minStockLevel = minStockLevel;
147
        this.minStockLevel = minStockLevel;
-
 
148
        this.freebieItemId = freebieItemId;
147
    }
149
    }
148
 
150
 
149
    public long getId() {
151
    public long getId() {
150
        return id;
152
        return id;
151
    }
153
    }
Line 521... Line 523...
521
	
523
	
522
	public void setPreferredInsurer(Long insurer) {
524
	public void setPreferredInsurer(Long insurer) {
523
		this.preferredInsurer=insurer;
525
		this.preferredInsurer=insurer;
524
	}
526
	}
525
 
527
 
-
 
528
	public Long getFreebieItemId() {
-
 
529
		return freebieItemId;
-
 
530
	}
526
 
531
 
-
 
532
	public void setFreebieItemId(Long freebieItemId) {
-
 
533
		this.freebieItemId = freebieItemId;
-
 
534
	}
527
 
535
	
528
}
536
}