|
@@ -534,11 +534,10 @@ public class StorageBillController extends JeecgController<StorageBill, IStorage
|
|
|
Page<StorageBill> page = new Page<>(pageNo, pageSize);
|
|
|
IPage<StorageBill> pageList = storageBillService.page(page, queryWrapper);
|
|
|
|
|
|
- // 统计总数
|
|
|
- int totalNumsAll = 0;
|
|
|
-
|
|
|
for (StorageBill bill : pageList.getRecords()) {
|
|
|
List<String> storageBillIds = Arrays.stream(bill.getId().split(",")).collect(Collectors.toList());
|
|
|
+ // 统计总数
|
|
|
+ int totalNumsAll = 0;
|
|
|
String totalBlankOutputStr = "";
|
|
|
// 根据装运单ID查询对应的明细,统计总的出坯量
|
|
|
if (bill.getDestination().contains("棒二") && oConvertUtils.listIsNotEmpty(storageBillIds)) {
|