Subversion Repositories SmartDukaan

Rev

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

Rev 6777 Rev 6824
Line 369... Line 369...
369
				vPricings.setTransferPrice(vip.getTransferPrice());
369
				vPricings.setTransferPrice(vip.getTransferPrice());
370
				vendorPricingMap.put(vPricings.getVendorId(), vPricings);
370
				vendorPricingMap.put(vPricings.getVendorId(), vPricings);
371
			}
371
			}
372
		}
372
		}
373
 
373
 
-
 
374
		in.shop2020.catalog.dashboard.shared.ItemStockPurchaseParams stockPurchaseParams = 
-
 
375
        	new in.shop2020.catalog.dashboard.shared.ItemStockPurchaseParams();
374
		
376
		
375
		Item item = new Item(thriftItem.getId(), thriftItem.getProductGroup(),
377
		Item item = new Item(thriftItem.getId(), thriftItem.getProductGroup(),
376
				thriftItem.getBrand(), thriftItem.getModelNumber(),
378
				thriftItem.getBrand(), thriftItem.getModelNumber(),
377
				thriftItem.getModelName(), thriftItem.getColor(),
379
				thriftItem.getModelName(), thriftItem.getColor(),
378
				CategoryManager.getCategoryManager().getCategoryLabel(
380
				CategoryManager.getCategoryManager().getCategoryLabel(
Line 403... Line 405...
403
                ItemType.SERIALIZED.equals(thriftItem.getType()),
405
                ItemType.SERIALIZED.equals(thriftItem.getType()),
404
                thriftItem.isClearance(),
406
                thriftItem.isClearance(),
405
                thriftItem.isSetShowSellingPrice() ? thriftItem.isShowSellingPrice() : false,
407
                thriftItem.isSetShowSellingPrice() ? thriftItem.isShowSellingPrice() : false,
406
				thriftItem.isSetPreferredVendor() ? thriftItem
408
				thriftItem.isSetPreferredVendor() ? thriftItem
407
						.getPreferredVendor() : null, null,
409
						.getPreferredVendor() : null, null,
408
				vendorPricingMap, null, null, null, null);
410
				vendorPricingMap, null, null, null, null, stockPurchaseParams.getNumOfDaysStock(), 
-
 
411
				stockPurchaseParams.getMinStockLevel());
409
		return item;
412
		return item;
410
	}
413
	}
411
 
414
 
412
}
415
}