yonge 1 mese fa
parent
commit
3be18f50ab

+ 1 - 1
mec-biz/src/main/java/com/ym/mec/biz/service/impl/ExportServiceImpl.java

@@ -2869,7 +2869,7 @@ public class ExportServiceImpl implements ExportService {
         //获取对外订单关联的合作单位
         Map<Integer, CooperationOrgan> cooperationOrganMap = new HashMap<>();
         List<Integer> cooperationOrganIds = studentPaymentOrderExportDtos.stream()
-                .filter(e -> OUTORDER.equals(e.getType()) || GroupType.OUTORDER == e.getGroupType() && (e.getType() != RENEW && e.getType() != APPLY))
+                .filter(e -> OUTORDER.equals(e.getType()) || (GroupType.OUTORDER == e.getGroupType() && (e.getType() != RENEW && e.getType() != APPLY)))
                 .map(StudentPaymentOrderExportDto::getCooperationId)
                 .filter(Objects::nonNull)
                 .distinct()