|  | @@ -1670,7 +1670,10 @@ public class FsStoreOrderServiceImpl implements IFsStoreOrderService
 | 
	
		
			
				|  |  |                  item.setPrice(cartDTO.getPrice().toString());
 | 
	
		
			
				|  |  |                  item.setQty(cartDTO.getNum());
 | 
	
		
			
				|  |  |                  // 仓库代码
 | 
	
		
			
				|  |  | -                item.setWarehouseCode(cartDTO.getWarehouseCode());
 | 
	
		
			
				|  |  | +                FsStoreProduct fsStoreProduct = productService.selectFsStoreProductById(cartDTO.getProductId());
 | 
	
		
			
				|  |  | +                if(ObjectUtil.isNotNull(fsStoreProduct)){
 | 
	
		
			
				|  |  | +                    item.setWarehouseCode(cartDTO.getWarehouseCode());
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  |                  item.setRefund(0);
 | 
	
		
			
				|  |  |                  details.add(item);
 | 
	
		
			
				|  |  |              }
 |