Commit 6d2ede49 authored by 黄奎's avatar 黄奎

页面修改

parent 24bfeda7
...@@ -613,7 +613,14 @@ namespace Edu.Module.Course ...@@ -613,7 +613,14 @@ namespace Edu.Module.Course
var guestList = order_GuestRepository.GetOrderGuestListRepository(new RB_Order_Guest_ViewModel() var guestList = order_GuestRepository.GetOrderGuestListRepository(new RB_Order_Guest_ViewModel()
{ {
ClassId = model.ClassId ClassId = model.ClassId
}); }).Where(qitem => qitem.GuestState != 2 || qitem.GuestState != 5).ToList();
foreach (var item in guestList)
{
if (item.ValidClassHours > item.CompleteHours)
{
message = "注意,该班级下面任然存在未消耗完课时的学员,请核对学员课时,进行补课处理!";
}
}
} }
return classRepository.Update(fileds, new WhereHelper(nameof(RB_Class_ViewModel.ClassId), model.ClassId)); return classRepository.Update(fileds, new WhereHelper(nameof(RB_Class_ViewModel.ClassId), model.ClassId));
} }
......
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