2016-07-04 21:17:50
while(!empty(productsInLineItemCtnrIterator) && productsInLineItemCtnrIterator.hasNext()) {
        var productLineItem : ProductLineItem = productsInLineItemCtnrIterator.next();
        if (productLineItem.bundledProductLineItems.length > 1) // product line item is bundle
		{	
			for(var i = 0 ; i < productLineItem.bundledProductLineItems.length ; i++){
				var bundleProductLineItem = productLineItem.bundledProductLineItems[i];
				var wareHouseID : String = (!('lc_isCustom' in bundleProductLineItem.product.custom) || bundleProductLineItem.product.custom.lc_isCustom != true)? 'WH001' : 'WH002';
				if(wareHouseList.indexOf(wareHouseID)== -1){
					// not exist warehouse 
					wareHouseList.push(wareHouseID);
				}				
			} 	
		} 
		else // normal product
		{
 
			var wareHouseID : String = ( !('lc_isCustom' in productLineItem.product.custom) || productLineItem.product.custom.lc_isCustom != true) ? 'WH001' : 'WH002';
			if(wareHouseList.indexOf(wareHouseID)== -1){
				// not exist warehouse 
				wareHouseList.push(wareHouseID);
			}
		}
	}
Invalid Email or Password