Commit daabd064 authored by liudong1993's avatar liudong1993

1

parent 563b9bc0
...@@ -3518,7 +3518,7 @@ namespace Edu.Module.Finance ...@@ -3518,7 +3518,7 @@ namespace Edu.Module.Finance
var rclist = new List<Model.ViewModel.Reserve.RB_Reserve_Class_Extend>(); var rclist = new List<Model.ViewModel.Reserve.RB_Reserve_Class_Extend>();
if (pageSize == 1000 || pageSize == 10000) { if (pageSize == 1000 || pageSize == 10000) {
//查询试听课 //查询试听课
rclist = reserve_ClassRepository.GetTeacherHoursDetialList(teacherId.ToString(), schoolId, 0, startMonth, endMonth, groupId); rclist = reserve_ClassRepository.GetTeacherHoursDetialList(teacherId > 0 ? teacherId.ToString() : "", schoolId, 0, startMonth, endMonth, groupId);
} }
if (list.Any() || rclist.Any()) { if (list.Any() || rclist.Any()) {
//班级类型查询 //班级类型查询
...@@ -3669,7 +3669,7 @@ namespace Edu.Module.Finance ...@@ -3669,7 +3669,7 @@ namespace Edu.Module.Finance
//根据学生签到表 查询 //根据学生签到表 查询
var list = class_CheckRepository.GetTeacherConsumptionHoursDetialList(teacherId.ToString(), schoolId, classId, startMonth, endMonth, groupId); var list = class_CheckRepository.GetTeacherConsumptionHoursDetialList(teacherId.ToString(), schoolId, classId, startMonth, endMonth, groupId);
//查询试听课 //查询试听课
var rclist = reserve_ClassRepository.GetTeacherHoursDetialList(teacherId.ToString(), schoolId, 0, startMonth, endMonth, groupId); var rclist = reserve_ClassRepository.GetTeacherHoursDetialList(teacherId > 0 ? teacherId.ToString() : "", schoolId, 0, startMonth, endMonth, groupId);
if (list.Any() || rclist.Any()) if (list.Any() || rclist.Any())
{ {
//班级类型查询 //班级类型查询
......
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