Subversion Repositories SmartDukaan

Rev

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

Rev 5504 Rev 6241
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, clearance;
43
    private boolean defaultForEntity, risky, warehouseStickiness, hasItemNo, itemType, clearance, showSellingPrice;
-
 
44
    public boolean isShowSellingPrice() {
-
 
45
		return showSellingPrice;
-
 
46
	}
-
 
47
 
-
 
48
	public void setShowSellingPrice(boolean showSellingPrice) {
-
 
49
		this.showSellingPrice = showSellingPrice;
-
 
50
	}
-
 
51
 
44
    private Integer expectedDelay;
52
	private Integer expectedDelay;
45
    private Long preferredVendor;
53
    private Long preferredVendor;
46
    private List<Long> sameItemsWithDifferentColors;
54
    private List<Long> sameItemsWithDifferentColors;
47
    
55
    
48
    
56
    
49
 
57
 
Line 71... Line 79...
71
            Double weight,
79
            Double weight,
72
            Long addedOn, Long startDate, Long comingSoonStartDate, Long expectedArrivalDate, Long retireDate, Long updatedOn,
80
            Long addedOn, Long startDate, Long comingSoonStartDate, Long expectedArrivalDate, Long retireDate, Long updatedOn,
73
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
81
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
74
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
82
            String bestDealsText, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
75
            Integer expectedDelay,
83
            Integer expectedDelay,
76
            boolean warehouseStickiness, boolean hasItemNo, boolean itemType, boolean clearance,
84
            boolean warehouseStickiness, boolean hasItemNo, boolean itemType, boolean clearance, boolean showSellingPrice,
77
            Long prefferedVendor,
85
            Long prefferedVendor,
78
            Map<Long, ItemInventory> itemInventory,
86
            Map<Long, ItemInventory> itemInventory,
79
            Map<Long,VendorPricings> vendorPricesMap, 
87
            Map<Long,VendorPricings> vendorPricesMap, 
80
            Map<String, VendorItemMapping> vendorKeysMap, 
88
            Map<String, VendorItemMapping> vendorKeysMap, 
81
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems, Map<String, VoucherItemMapping> vouchersMap) {
89
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems, Map<String, VoucherItemMapping> vouchersMap) {
Line 110... Line 118...
110
        this.defaultForEntity = defaultForEntity;
118
        this.defaultForEntity = defaultForEntity;
111
        this.risky = risky;
119
        this.risky = risky;
112
        this.expectedDelay = expectedDelay;
120
        this.expectedDelay = expectedDelay;
113
        this.warehouseStickiness = warehouseStickiness;
121
        this.warehouseStickiness = warehouseStickiness;
114
        this.hasItemNo = hasItemNo;
122
        this.hasItemNo = hasItemNo;
-
 
123
        this.showSellingPrice = showSellingPrice;
115
        this.setItemType(itemType);
124
        this.setItemType(itemType);
116
        this.setClearance(clearance);
125
        this.setClearance(clearance);
117
        this.preferredVendor = prefferedVendor;
126
        this.preferredVendor = prefferedVendor;
118
        
127
        
119
        this.itemInventory = itemInventory;
128
        this.itemInventory = itemInventory;