|
@@ -2755,8 +2755,8 @@ public class ExportServiceImpl implements ExportService {
|
|
|
Map<Integer, String> 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 -> e.getMusicGroupId() != null)
|
|
|
- .map(e -> Integer.valueOf(e.getMusicGroupId()))
|
|
|
+ .filter(e -> e.getCooperationId() != null)
|
|
|
+ .map(e -> e.getCooperationId())
|
|
|
.distinct()
|
|
|
.collect(Collectors.toList());
|
|
|
if (cooperationOrganIds.size() > 0) {
|