Browse Source

新增原矿报表

donglang 1 ngày trước cách đây
mục cha
commit
08ee62872a

+ 1 - 1
sckw-modules/sckw-transport/src/main/java/com/sckw/transport/service/app/WaybillOrderService.java

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