|
|
|
@ -2542,18 +2542,15 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
|
|
|
|
|
|
|
|
|
|
List<BasicdataWarehouseEntity> myWarehouseList = warehouseClient.getMyWarehouseList(); |
|
|
|
|
BasicdataWarehouseEntity currentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
List<Long> collect = myWarehouseList.stream().map(BasicdataWarehouseEntity::getId).collect(Collectors.toList()); |
|
|
|
|
List<Long> collect = null; |
|
|
|
|
|
|
|
|
|
if (collect.size() > 1) { |
|
|
|
|
stockArticleEntity.setWarehouseIdList(collect); |
|
|
|
|
} else if (collect.size() == 1) { |
|
|
|
|
stockArticleEntity.setWarehouseId(collect.get(0)); |
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(currentWarehouse)) { |
|
|
|
|
stockArticleEntity.setWarehouseIdList(null); |
|
|
|
|
stockArticleEntity.setWarehouseId(currentWarehouse.getId()); |
|
|
|
|
if(ObjectUtils.isNotNull(myWarehouseList)){ |
|
|
|
|
collect = new ArrayList<>(); |
|
|
|
|
collect.add(currentWarehouse.getId()); |
|
|
|
|
}else{ |
|
|
|
|
collect = myWarehouseList.stream().map(BasicdataWarehouseEntity::getId).collect(Collectors.toList()); |
|
|
|
|
} |
|
|
|
|
IPage<DistributionSignforStockArticleVO> distributionStockArticleEntityIPage = baseMapper.pageSignforListOwe(page, stockArticleEntity); |
|
|
|
|
IPage<DistributionSignforStockArticleVO> distributionStockArticleEntityIPage = baseMapper.pageSignforListOwe(page, stockArticleEntity,collect); |
|
|
|
|
//处理创建人
|
|
|
|
|
distributionStockArticleEntityIPage.getRecords().forEach(a -> { |
|
|
|
|
if (Func.isNotEmpty(a.getCreateUser())) { |
|
|
|
@ -2617,18 +2614,25 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
|
|
|
|
|
} |
|
|
|
|
List<BasicdataWarehouseEntity> myWarehouseList = warehouseClient.getMyWarehouseList(); |
|
|
|
|
BasicdataWarehouseEntity currentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
List<Long> collect = myWarehouseList.stream().map(BasicdataWarehouseEntity::getId).collect(Collectors.toList()); |
|
|
|
|
List<Long> warehouseIdList = null; |
|
|
|
|
|
|
|
|
|
if (collect.size() > 1) { |
|
|
|
|
stockArticleEntity.setWarehouseIdList(collect); |
|
|
|
|
} else if (collect.size() == 1) { |
|
|
|
|
stockArticleEntity.setWarehouseId(collect.get(0)); |
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(currentWarehouse)) { |
|
|
|
|
stockArticleEntity.setWarehouseIdList(null); |
|
|
|
|
stockArticleEntity.setWarehouseId(currentWarehouse.getId()); |
|
|
|
|
if (ObjectUtils.isNotNull(currentWarehouse)){ |
|
|
|
|
warehouseIdList = new ArrayList<>(); |
|
|
|
|
warehouseIdList.add(currentWarehouse.getId()); |
|
|
|
|
}else{ |
|
|
|
|
warehouseIdList=myWarehouseList.stream().map(BasicdataWarehouseEntity::getId).collect(Collectors.toList()); |
|
|
|
|
} |
|
|
|
|
IPage<DistributionSignforStockArticleVO> distributionStockArticleEntityIPage = baseMapper.pageSignforListOwe(page, stockArticleEntity); |
|
|
|
|
|
|
|
|
|
// if (collect.size() > 1) {
|
|
|
|
|
// stockArticleEntity.setWarehouseIdList(collect);
|
|
|
|
|
// } else if (collect.size() == 1) {
|
|
|
|
|
// stockArticleEntity.setWarehouseId(collect.get(0));
|
|
|
|
|
// }
|
|
|
|
|
// if (Func.isNotEmpty(currentWarehouse)) {
|
|
|
|
|
// stockArticleEntity.setWarehouseIdList(null);
|
|
|
|
|
// stockArticleEntity.setWarehouseId(currentWarehouse.getId());
|
|
|
|
|
// }
|
|
|
|
|
IPage<DistributionSignforStockArticleVO> distributionStockArticleEntityIPage = baseMapper.pageSignforListOwe(page, stockArticleEntity,warehouseIdList); |
|
|
|
|
//处理创建人
|
|
|
|
|
List<DistributionSignForStockArticleExcel> signForStockArticleExcels = new ArrayList<>(); |
|
|
|
|
distributionStockArticleEntityIPage.getRecords().forEach(a -> { |
|
|
|
|