Browse Source

Merge branch 'zx_saas_12-07' of http://git.dayaedu.com/yonge/mec into master_saas

zouxuan 2 năm trước cách đây
mục cha
commit
0cc1d67384

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

@@ -135,6 +135,7 @@ public class StudentManageServiceImpl implements StudentManageService {
             List<Integer> organIds = dataList.stream().map(e -> e.getOrganId()).distinct().collect(Collectors.toList());
             List<Integer> courseTeacherIds = dataList.stream().map(e -> e.getCourseTeacher()).distinct().collect(Collectors.toList());
             organIds.removeAll(Collections.singleton(null));
+            courseTeacherIds.removeAll(Collections.singleton(null));
             List<SysUserCashAccount> accounts = sysUserCashAccountDao.findByUserIds(userIds);
             Map<Integer, Organization> organMap = null;
             if(!CollectionUtils.isEmpty(organIds)){