Commit c2516484 authored by liudong1993's avatar liudong1993

修复教师奖励

parent b1dc7708
...@@ -605,6 +605,7 @@ namespace Edu.Module.Course ...@@ -605,6 +605,7 @@ namespace Edu.Module.Course
string msg = ""; string msg = "";
//查询出所有需要发提成的人 //查询出所有需要发提成的人
List<int> EmpList = list.Select(x => x.TeacherId).Distinct().ToList(); List<int> EmpList = list.Select(x => x.TeacherId).Distinct().ToList();
if (!EmpList.Any()) { return "暂无老师有可发放的提成金额"; }
//根据教师ids 查询 账号ids //根据教师ids 查询 账号ids
var teachList = teacherRepository.GetTeacherList(string.Join(",", EmpList)); var teachList = teacherRepository.GetTeacherList(string.Join(",", EmpList));
//查询所有的账户信息 不存在的需要提示 //查询所有的账户信息 不存在的需要提示
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment