|
|
|
@ -1520,12 +1520,16 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
|
|
|
|
|
|
|
|
|
|
Integer totalNumber = stockArticleEntity.getTotalNumber(); |
|
|
|
|
//查询入库件数
|
|
|
|
|
QueryWrapper<DistributionParcelListEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("order_code", stockArticleEntity.getOrderCode()) |
|
|
|
|
.eq("warehouse_id", stockArticleEntity.getWarehouseId()) |
|
|
|
|
.eq("conditions", 1) |
|
|
|
|
.eq("is_deleted", 0); |
|
|
|
|
List<DistributionParcelListEntity> list = distributionParcelListService.list(queryWrapper); |
|
|
|
|
// QueryWrapper<DistributionParcelListEntity> queryWrapper = new QueryWrapper<>();
|
|
|
|
|
// queryWrapper.eq("order_code", stockArticleEntity.getOrderCode())
|
|
|
|
|
// .eq("warehouse_id", stockArticleEntity.getWarehouseId())
|
|
|
|
|
// .eq("conditions", 1)
|
|
|
|
|
// .eq("is_deleted", 0);
|
|
|
|
|
// List<DistributionParcelListEntity> list = distributionParcelListService.list(queryWrapper);
|
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> list = distributionParcelListService.findListByOrderCodeAndWarehouseIdAndConditions(stockArticleEntity.getOrderCode(), stockArticleEntity.getWarehouseId(), 1); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(list)){ |
|
|
|
|
log.info("##################updateOrderInfoByDistributionStockArticleEntity: 查询到的包件数据 {} 条",list.size()); |
|
|
|
|