|
@ -2388,24 +2388,10 @@ public class BalanceServiceImpl implements BalanceService { |
|
|
int randomNum = (int) (Math.random() * 100) + 1; |
|
|
int randomNum = (int) (Math.random() * 100) + 1; |
|
|
queryWrapper.apply(randomNum+"="+randomNum); |
|
|
queryWrapper.apply(randomNum+"="+randomNum); |
|
|
queryWrapper.groupBy("item_code", "batch", "qty", "inventory_status", "warehouse_code", "area_code", "location_group_code", "location_code", "area_type"); |
|
|
queryWrapper.groupBy("item_code", "batch", "qty", "inventory_status", "warehouse_code", "area_code", "location_group_code", "location_code", "area_type"); |
|
|
List<BalanceDO> balanceDOListTemp = balanceMapper.selectListByWrapper(queryWrapper); |
|
|
List<BalanceDO> balanceDOList = balanceMapper.selectListByWrapper(queryWrapper); |
|
|
if (balanceDOListTemp == null || balanceDOListTemp.isEmpty()) { |
|
|
if (balanceDOList == null || balanceDOList.isEmpty()) { |
|
|
throw exception(Recommended_NOT_EXISTS, itemCode); |
|
|
throw exception(Recommended_NOT_EXISTS, itemCode); |
|
|
} |
|
|
} |
|
|
List<BalanceDO> balanceDOList = new ArrayList<>(); |
|
|
|
|
|
for(BalanceDO balanceDO:balanceDOListTemp){ |
|
|
|
|
|
BalanceDO tempBalance = new BalanceDO(); |
|
|
|
|
|
BeanUtils.copyProperties(balanceDO,tempBalance); |
|
|
|
|
|
balanceDOList.add(tempBalance); |
|
|
|
|
|
} |
|
|
|
|
|
// 不走mybatis缓存,每次都希望查询
|
|
|
|
|
|
balanceDOListTemp.clear(); |
|
|
|
|
|
balanceDOListTemp = null; |
|
|
|
|
|
// try {
|
|
|
|
|
|
// Thread.sleep(1000);
|
|
|
|
|
|
// } catch (InterruptedException e) {
|
|
|
|
|
|
// throw new RuntimeException(e);
|
|
|
|
|
|
// }
|
|
|
|
|
|
// 任务子表数据
|
|
|
// 任务子表数据
|
|
|
List<BalanceDO> balanceDOListJob = new ArrayList<>(); |
|
|
List<BalanceDO> balanceDOListJob = new ArrayList<>(); |
|
|
if (balanceDOList == null || balanceDOList.isEmpty()) { |
|
|
if (balanceDOList == null || balanceDOList.isEmpty()) { |
|
|