|
@@ -2452,7 +2452,7 @@ public class WaybillOrderService {
|
|
|
List<WaybillOrderRawOreReportResp> reportResps = orderRepoost.stream().filter(
|
|
List<WaybillOrderRawOreReportResp> reportResps = orderRepoost.stream().filter(
|
|
|
report ->
|
|
report ->
|
|
|
// 商品ID过滤
|
|
// 商品ID过滤
|
|
|
- CollectionUtils.isNotEmpty(param.getDictIds()) || param.getDictIds().contains(report.getDictId())
|
|
|
|
|
|
|
+ CollectionUtils.isEmpty(param.getDictIds()) || param.getDictIds().contains(report.getDictId())
|
|
|
).collect(Collectors.toList());
|
|
).collect(Collectors.toList());
|
|
|
|
|
|
|
|
log.info("[报表]每日原矿报表模糊查询结束,size:{}", reportResps.size());
|
|
log.info("[报表]每日原矿报表模糊查询结束,size:{}", reportResps.size());
|