chengxiaowen 1 주 전
부모
커밋
512d78c182
1개의 변경된 파일과 1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/poteviohealth/cgp/statistics/service/impl/QujingOrderServiceImpl.java

+ 1 - 1
src/main/java/com/poteviohealth/cgp/statistics/service/impl/QujingOrderServiceImpl.java

@@ -733,7 +733,7 @@ public class QujingOrderServiceImpl implements IQujingOrderService {
         List<Product> products = baseMapper.queryIntegralProduct(dbName,operatorId,supplierId);
 
         List<StationMerchant> stationMerchantList =  baseMapper.getStationMerchantList(dbName,supplierId);
-        List<IntegralProduct> productList = baseMapper.integralProductList(dbName,supplierId);
+        List<IntegralProduct> productList = baseMapper.integralProductList(dbName,operatorId,supplierId);
         List<StationMerchant> stationList = stationMerchantList.stream().filter(s->s.getStatus().equals(1) && !s.getType().equals(18) && s.getStreet() != null && s.getCountry() != null && s.getCity() != null).collect(Collectors.toList());
         List<ListParams> categoryFilterList = categoryList.stream().filter(c->c.getKey().equals(1)).collect(Collectors.toList());