Subversion Repositories SmartDukaan

Rev

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

Rev 18048 Rev 18150
Line 50... Line 50...
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
    private PrivateDeal privateDeal;
53
    private PrivateDeal privateDeal;
54
    private Long packQuantity;
54
    private Long packQuantity;
-
 
55
    private Long quantityStep;
-
 
56
	private Long minimumBuyQuantity;
55
    
57
    
-
 
58
	public Long getMinimumBuyQuantity() {
-
 
59
		return minimumBuyQuantity;
-
 
60
	}
-
 
61
 
-
 
62
	public void setMinimumBuyQuantity(Long minimumBuyQuantity) {
-
 
63
		this.minimumBuyQuantity = minimumBuyQuantity;
56
    
64
	}
-
 
65
 
-
 
66
	public Long getQuantityStep() {
-
 
67
		return quantityStep;
-
 
68
	}
-
 
69
 
-
 
70
	public void setQuantityStep(Long quantityStep) {
-
 
71
		this.quantityStep = quantityStep;
-
 
72
	}
57
    
73
    
58
    public Long getPackQuantity() {
74
    public Long getPackQuantity() {
59
		return packQuantity;
75
		return packQuantity;
60
	}
76
	}
61
 
77
 
Line 272... Line 288...
272
            Long preferredInsurer,
288
            Long preferredInsurer,
273
            Map<Long, ItemInventory> itemInventory,
289
            Map<Long, ItemInventory> itemInventory,
274
            Map<Long,VendorPricings> vendorPricesMap, 
290
            Map<Long,VendorPricings> vendorPricesMap, 
275
            Map<String, VendorItemMapping> vendorKeysMap, 
291
            Map<String, VendorItemMapping> vendorKeysMap, 
276
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems, Map<String, VoucherItemMapping> vouchersMap,
292
            Map<Long, SourcePricings> sourcePricesMap, Map<Long, Item> similarItems, Map<String, VoucherItemMapping> vouchersMap,
277
            Integer numOfDaysStock, Long minStockLevel, Map<Long,String> saleHistory, Long freebieItemId,String asin,Long holdInventory,Long defaultInventory,Map<String,String> stateNameVatPercentageMap,PrivateDeal privateDeal, Long packQuantity) {
293
            Integer numOfDaysStock, Long minStockLevel, Map<Long,String> saleHistory, Long freebieItemId,String asin,Long holdInventory,Long defaultInventory,Map<String,String> stateNameVatPercentageMap,PrivateDeal privateDeal, Long packQuantity,
-
 
294
            Long quantityStep, Long minimumBuyQuantity) {
278
        this();
295
        this();
279
        this.id = id;
296
        this.id = id;
280
        this.productGroup = productGroup;
297
        this.productGroup = productGroup;
281
        this.brand = brand;
298
        this.brand = brand;
282
        this.modelNumber = modelNumber;
299
        this.modelNumber = modelNumber;
Line 329... Line 346...
329
        this.holdInventory = holdInventory;
346
        this.holdInventory = holdInventory;
330
        this.defaultInventory = defaultInventory;
347
        this.defaultInventory = defaultInventory;
331
        this.stateNameVatPercentageMap = stateNameVatPercentageMap;
348
        this.stateNameVatPercentageMap = stateNameVatPercentageMap;
332
        this.privateDeal = privateDeal;
349
        this.privateDeal = privateDeal;
333
        this.packQuantity = packQuantity;
350
        this.packQuantity = packQuantity;
-
 
351
        this.quantityStep = quantityStep;
-
 
352
        this.minimumBuyQuantity =minimumBuyQuantity; 
334
    }
353
    }
335
    
354
    
336
    public Item(long id, String productGroup, String brand, String modelNumber, String modelName, String color,
355
    public Item(long id, String productGroup, String brand, String modelNumber, String modelName, String color,
337
            String category, Long categoryId, String comments,
356
            String category, Long categoryId, String comments,
338
            Long catalogItemId,
357
            Long catalogItemId,