Subversion Repositories SmartDukaan

Rev

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

Rev 9835 Rev 9841
Line 44... Line 44...
44
    private Long bestSellingRank;
44
    private Long bestSellingRank;
45
    private Integer numOfDaysStock;
45
    private Integer numOfDaysStock;
46
    private Long minStockLevel;
46
    private Long minStockLevel;
47
    private Map<Long,String> saleHistory;
47
    private Map<Long,String> saleHistory;
48
    private Long freebieItemId;
48
    private Long freebieItemId;
49
    private boolean defaultForEntity, risky, warehouseStickiness, hasItemNo, itemType, showSellingPrice;
49
    private boolean defaultForEntity, risky, warehouseStickiness, hasItemNo, itemType, showSellingPrice, holdOverride;
50
    private String asin;
50
    private String asin;
51
    private Long holdInventory;
51
    private Long holdInventory;
52
    private Long defaultInventory;
52
    private Long defaultInventory;
53
    
53
    
54
    public String getAsin() {
54
    public String getAsin() {
Line 98... Line 98...
98
            Double weight,
98
            Double weight,
99
            Long addedOn, Long startDate, Long comingSoonStartDate, Long expectedArrivalDate, Long retireDate, Long updatedOn,
99
            Long addedOn, Long startDate, Long comingSoonStartDate, Long expectedArrivalDate, Long retireDate, Long updatedOn,
100
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
100
            String itemStatus, Integer itemStatusValue, String itemStatusDesc, 
101
            String bestDealsText,String bestDealsDetailsText,String bestDealsDetailsLink, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
101
            String bestDealsText,String bestDealsDetailsText,String bestDealsDetailsLink, Double bestDealsValue, Long bestSellingRank, boolean defaultForEntity, boolean risky,
102
            Integer expectedDelay,
102
            Integer expectedDelay,
103
            boolean warehouseStickiness, boolean hasItemNo, boolean itemType,boolean showSellingPrice,
103
            boolean warehouseStickiness, boolean hasItemNo, boolean itemType,boolean showSellingPrice, boolean holdOverride,
104
            Long prefferedVendor,
104
            Long prefferedVendor,
105
            Long preferredInsurer,
105
            Long preferredInsurer,
106
            Map<Long, ItemInventory> itemInventory,
106
            Map<Long, ItemInventory> itemInventory,
107
            Map<Long,VendorPricings> vendorPricesMap, 
107
            Map<Long,VendorPricings> vendorPricesMap, 
108
            Map<String, VendorItemMapping> vendorKeysMap, 
108
            Map<String, VendorItemMapping> vendorKeysMap, 
Line 142... Line 142...
142
        this.risky = risky;
142
        this.risky = risky;
143
        this.expectedDelay = expectedDelay;
143
        this.expectedDelay = expectedDelay;
144
        this.warehouseStickiness = warehouseStickiness;
144
        this.warehouseStickiness = warehouseStickiness;
145
        this.hasItemNo = hasItemNo;
145
        this.hasItemNo = hasItemNo;
146
        this.showSellingPrice = showSellingPrice;
146
        this.showSellingPrice = showSellingPrice;
-
 
147
        this.holdOverride = holdOverride;
147
        this.setItemType(itemType);
148
        this.setItemType(itemType);
148
        this.preferredVendor = prefferedVendor;
149
        this.preferredVendor = prefferedVendor;
149
        this.preferredInsurer = preferredInsurer;        
150
        this.preferredInsurer = preferredInsurer;        
150
        this.itemInventory = itemInventory;
151
        this.itemInventory = itemInventory;
151
        this.vendorPricesMap = vendorPricesMap;
152
        this.vendorPricesMap = vendorPricesMap;
Line 632... Line 633...
632
 
633
 
633
	public void setDefaultInventory(Long defaultInventory) {
634
	public void setDefaultInventory(Long defaultInventory) {
634
		this.defaultInventory = defaultInventory;
635
		this.defaultInventory = defaultInventory;
635
	}
636
	}
636
 
637
 
-
 
638
	public void setHoldOverride(boolean holdOverride) {
-
 
639
		this.holdOverride = holdOverride;
-
 
640
	}
-
 
641
 
-
 
642
	public boolean isHoldOverride() {
-
 
643
		return holdOverride;
-
 
644
	}
-
 
645
 
637
	
646
	
638
}
647
}