|
|
@@ -79,7 +79,7 @@ public class PjpfFundingController extends BladeController {
|
|
|
List<PjpfFundingItem> fundingItemList = pjpfFundingItemService.list(new LambdaQueryWrapper<PjpfFundingItem>()
|
|
|
.eq(PjpfFundingItem::getTenantId, AuthUtil.getTenantId())
|
|
|
.eq(PjpfFundingItem::getIsDeleted, 0)
|
|
|
- .in(PjpfFundingItem::getPid, idList));
|
|
|
+ .in(!idList.isEmpty(),PjpfFundingItem::getPid, idList));
|
|
|
for (PjpfFunding item : pages.getRecords()) {
|
|
|
List<PjpfFundingItem> fundingItems = fundingItemList.stream().filter(e -> e.getPid().equals(item.getId())).collect(Collectors.toList());
|
|
|
item.setCount(fundingItems.size());
|