Commit c2a52d89 authored by 黄奎's avatar 黄奎

上课记录查询修改

parent de4aaea2
...@@ -132,6 +132,11 @@ namespace Edu.Model.ViewModel.Grade ...@@ -132,6 +132,11 @@ namespace Edu.Model.ViewModel.Grade
/// </summary> /// </summary>
public int StuId { get; set; } public int StuId { get; set; }
/// <summary>
/// 学员姓名
/// </summary>
public string StuName { get; set; }
/// <summary> /// <summary>
/// 每一节课分钟数 /// 每一节课分钟数
/// </summary> /// </summary>
......
...@@ -4982,7 +4982,7 @@ namespace Edu.Module.Course ...@@ -4982,7 +4982,7 @@ namespace Edu.Module.Course
if (list.Any(x => x.ClassType == 1)) if (list.Any(x => x.ClassType == 1))
{ {
string classIds = string.Join(",", list.Where(x => x.ClassType == 1).Select(qitem => qitem.ClassId)); string classIds = string.Join(",", list.Where(x => x.ClassType == 1).Select(qitem => qitem.ClassId));
guestList = order_GuestRepository.GetOrderGuestListRepository(new RB_Order_Guest_ViewModel() { ClassIds = classIds }); guestList = order_GuestRepository.GetOrderGuestListRepository(new RB_Order_Guest_ViewModel() { ClassIds = classIds,GuestName=query.StuName });
tempGuestList = order_GuestRepository.GetTempInvitationGuest(new Model.ViewModel.EduTask.RB_Temporary_Invitation_ViewModel { ClassIds = classIds }); tempGuestList = order_GuestRepository.GetTempInvitationGuest(new Model.ViewModel.EduTask.RB_Temporary_Invitation_ViewModel { ClassIds = classIds });
feedBackList = class_FeedBackRepository.GetClassFeedBackList(new RB_Class_FeedBack_ViewModel() { Q_ClassIds = classIds }); feedBackList = class_FeedBackRepository.GetClassFeedBackList(new RB_Class_FeedBack_ViewModel() { Q_ClassIds = classIds });
} }
...@@ -4991,14 +4991,20 @@ namespace Edu.Module.Course ...@@ -4991,14 +4991,20 @@ namespace Edu.Module.Course
string reserveClassIds = string.Join(",", list.Select(qitem => qitem.ClassTimeId)); string reserveClassIds = string.Join(",", list.Select(qitem => qitem.ClassTimeId));
visitorList = visitor_ReserveRepository.GetVisitorReserveListRepository(new Model.ViewModel.Reserve.RB_Visitor_Reserve_Extend() visitorList = visitor_ReserveRepository.GetVisitorReserveListRepository(new Model.ViewModel.Reserve.RB_Visitor_Reserve_Extend()
{ {
Q_ReserveClassIds = reserveClassIds Q_ReserveClassIds = reserveClassIds,
StuName=query.StuName,
}); });
} }
List<RB_Scroll_Appointment_ViewModel> AppointList = new List<RB_Scroll_Appointment_ViewModel>(); List<RB_Scroll_Appointment_ViewModel> AppointList = new List<RB_Scroll_Appointment_ViewModel>();
if (list.Any(x => x.ClassType == 3)) if (list.Any(x => x.ClassType == 3))
{ {
string appointIds = string.Join(",", list.Where(x => x.ClassType == 3).Select(qitem => qitem.AppointIds)); string appointIds = string.Join(",", list.Where(x => x.ClassType == 3).Select(qitem => qitem.AppointIds));
AppointList = scroll_AppointmentRepository.GetAppointList(new RB_Scroll_Appointment_ViewModel() { Group_Id = query.Group_Id, AppointIds = appointIds }); AppointList = scroll_AppointmentRepository.GetAppointList(new RB_Scroll_Appointment_ViewModel()
{
Group_Id = query.Group_Id,
AppointIds = appointIds,
StuName = query.StuName
});
} }
foreach (var item in list) foreach (var item in list)
{ {
...@@ -5008,7 +5014,7 @@ namespace Edu.Module.Course ...@@ -5008,7 +5014,7 @@ namespace Edu.Module.Course
object grList = new object(); object grList = new object();
if (item.ClassType == 1) if (item.ClassType == 1)
{ {
tempTimeGuestList.AddRange(guestList.Where(qitem => qitem.ClassId == item.ClassId && (qitem.GuestState == GuestStateEnum.Normal || qitem.GuestState == GuestStateEnum.StopClassesApplyIng || ((qitem.GuestState == GuestStateEnum.StopClasses || qitem.GuestState == GuestStateEnum.Graduate) && qitem.ChangeEffectTime.HasValue && Convert.ToDateTime(Common.ConvertHelper.FormatDate(qitem.ChangeEffectTime)) >= item.ClassDate)))); tempTimeGuestList.AddRange(guestList.Where(qitem => qitem.ClassId == item.ClassId &&qitem.GuestState!= GuestStateEnum.DropOut ));
tempTimeGuestList.AddRange(tempGuestList.Where(qitem => qitem.ClassId == item.ClassId && item.ClassTimeId == qitem.ClassTimeId && (qitem.GuestState == GuestStateEnum.Normal || qitem.GuestState == GuestStateEnum.StopClassesApplyIng || ((qitem.GuestState == GuestStateEnum.StopClasses || qitem.GuestState == GuestStateEnum.Graduate) && qitem.ChangeEffectTime.HasValue && Convert.ToDateTime(Common.ConvertHelper.FormatDate(qitem.ChangeEffectTime)) >= item.ClassDate)))); tempTimeGuestList.AddRange(tempGuestList.Where(qitem => qitem.ClassId == item.ClassId && item.ClassTimeId == qitem.ClassTimeId && (qitem.GuestState == GuestStateEnum.Normal || qitem.GuestState == GuestStateEnum.StopClassesApplyIng || ((qitem.GuestState == GuestStateEnum.StopClasses || qitem.GuestState == GuestStateEnum.Graduate) && qitem.ChangeEffectTime.HasValue && Convert.ToDateTime(Common.ConvertHelper.FormatDate(qitem.ChangeEffectTime)) >= item.ClassDate))));
var nowFeedBackList = feedBackList.Where(x => x.ClassTimeId == item.ClassTimeId && x.ClassId == item.ClassId); var nowFeedBackList = feedBackList.Where(x => x.ClassTimeId == item.ClassTimeId && x.ClassId == item.ClassId);
...@@ -5021,7 +5027,6 @@ namespace Edu.Module.Course ...@@ -5021,7 +5027,6 @@ namespace Edu.Module.Course
else if (tempTimeGuestList.Count() == nowFeedBackList.Count()) else if (tempTimeGuestList.Count() == nowFeedBackList.Count())
{ {
feedBackStatus = 2; feedBackStatus = 2;
} }
} }
......
...@@ -751,7 +751,24 @@ GROUP BY A.ClassPlanId,A.StuId,A.CourseId ,A.ClassDate,A.ClassRoomId ...@@ -751,7 +751,24 @@ GROUP BY A.ClassPlanId,A.StuId,A.CourseId ,A.ClassDate,A.ClassRoomId
{ {
where.AppendFormat(" AND A.{0}={1} ", nameof(RB_Class_Plan_ViewModel.ClassId), query.ClassId); where.AppendFormat(" AND A.{0}={1} ", nameof(RB_Class_Plan_ViewModel.ClassId), query.ClassId);
} }
if (query.AppointState > 0) { if (!string.IsNullOrEmpty(query.StuName))
{
whereAppoint.AppendFormat(@" AND og.GuestName LIKE '%{0}%' ", query.StuName);
whereReserve.AppendFormat(@" AND Exists
(
SELECT 1
FROM rb_visitor_reserve AS vr LEFT JOIN rb_student AS B ON vr.Visitor_Id=B.StuId
WHERE vr.ReserveClassId=A.ReserveClassId AND vr.Status=0 AND B.StuName LIKE '%{0}%'
)
", query.StuName);
where.AppendFormat(@"AND EXISTS
(
SELECT 1 FROM rb_order_guest AS gu INNER JOIN rb_order AS o ON gu.OrderId=o.OrderId WHERE gu.`Status`=0 AND o.OrderState<>3 AND gu.ClassId=A.ClassId AND gu.GuestName LIKE '%{0}%'
)", query.StuName);
}
if (query.AppointState > 0)
{
if (query.AppointState == 1) if (query.AppointState == 1)
{ {
whereAppoint.AppendFormat(" AND A.{0}=1 ", nameof(RB_Scroll_Appointment_ViewModel.State)); whereAppoint.AppendFormat(" AND A.{0}=1 ", nameof(RB_Scroll_Appointment_ViewModel.State));
...@@ -776,13 +793,12 @@ GROUP BY A.ClassPlanId,A.StuId,A.CourseId ,A.ClassDate,A.ClassRoomId ...@@ -776,13 +793,12 @@ GROUP BY A.ClassPlanId,A.StuId,A.CourseId ,A.ClassDate,A.ClassRoomId
builderAppoint.AppendFormat(@" builderAppoint.AppendFormat(@"
SELECT 3 as ClassType,IFNULL(t1.ClassTimeId,0) as ClassTimeId,a.CourseSTime as NewPlanDateTime,a.CourseSTime as StartTime,a.CourseETime as EndTime, IFNULL(t1.ClassPlanId,0) as ClassPlanId, 0 as ClassId, a.Date as ClassDate, a.RoomId as ClassRoomId,'预约课' as ClassName, c.CourseName SELECT 3 as ClassType,IFNULL(t1.ClassTimeId,0) as ClassTimeId,a.CourseSTime as NewPlanDateTime,a.CourseSTime as StartTime,a.CourseETime as EndTime, IFNULL(t1.ClassPlanId,0) as ClassPlanId, 0 as ClassId, a.Date as ClassDate, a.RoomId as ClassRoomId,'预约课' as ClassName, c.CourseName
,ac.AccountId as Teacher_Id,t.TeacherName,r.RoomName,r.SeatNum as RoomNum, og.TotalChapterNo as TotalPlanNum, GROUP_CONCAT(a.Id) AS AppointIds,a.ChapterNo,0 as ReserveType ,ac.AccountId as Teacher_Id,t.TeacherName,r.RoomName,r.SeatNum as RoomNum, og.TotalChapterNo as TotalPlanNum, GROUP_CONCAT(a.Id) AS AppointIds,a.ChapterNo,0 as ReserveType
FROM rb_scroll_appointment a FROM rb_scroll_appointment a INNER JOIN rb_course c on a.CourseId = c.CourseId
INNER JOIN rb_course c on a.CourseId = c.CourseId INNER JOIN rb_account ac on a.AccountId = ac.Id
INNER JOIN rb_account ac on a.AccountId = ac.Id INNER JOIN rb_teacher t on t.TId = ac.AccountId
INNER JOIN rb_teacher t on t.TId = ac.AccountId INNER JOIN rb_class_room r on a.RoomId = r.RoomId
INNER JOIN rb_class_room r on a.RoomId = r.RoomId INNER JOIN rb_order_guest og on a.GuestId = og.Id
INNER JOIN rb_order_guest og on a.GuestId = og.Id LEFT JOIN rb_class_time t1 on t1.ClassPlanId = a.ClassPlanId
LEFT JOIN rb_class_time t1 on t1.ClassPlanId = a.ClassPlanId
WHERE 1=1 {0} GROUP BY a.CourseSTime,a.CourseETime,a.RoomId,a.Date ", whereAppoint.ToString()); WHERE 1=1 {0} GROUP BY a.CourseSTime,a.CourseETime,a.RoomId,a.Date ", whereAppoint.ToString());
builderReserveClass.AppendFormat(@" builderReserveClass.AppendFormat(@"
...@@ -797,9 +813,8 @@ WHERE 1=1 {0} ", whereReserve.ToString()); ...@@ -797,9 +813,8 @@ WHERE 1=1 {0} ", whereReserve.ToString());
SELECT 1 as ClassType,F.ClassTimeId,CONCAT( DATE_FORMAT(A.ClassDate,'%Y-%m-%d') ,' ',f.StartTime,':00') AS NewPlanDateTime,F.StartTime,f.EndTime,A.ClassPlanId, A.ClassId,A.ClassDate,A.ClassRoomId,B.ClassName,C.CourseName, SELECT 1 as ClassType,F.ClassTimeId,CONCAT( DATE_FORMAT(A.ClassDate,'%Y-%m-%d') ,' ',f.StartTime,':00') AS NewPlanDateTime,F.StartTime,f.EndTime,A.ClassPlanId, A.ClassId,A.ClassDate,A.ClassRoomId,B.ClassName,C.CourseName,
B.Teacher_Id,IFNULL(D.TeacherName,'') AS TeacherName,E.RoomName,IFNULL(E.SeatNum,0) AS RoomNum,plan.TotalPlanNum , '' as AppointIds,0 as ChapterNo,0 as ReserveType B.Teacher_Id,IFNULL(D.TeacherName,'') AS TeacherName,E.RoomName,IFNULL(E.SeatNum,0) AS RoomNum,plan.TotalPlanNum , '' as AppointIds,0 as ChapterNo,0 as ReserveType
FROM rb_class_time as F INNER JOIN FROM rb_class_time as F INNER JOIN rb_class_plan AS A on F.ClassPlanId=a.ClassPlanId
rb_class_plan AS A on F.ClassPlanId=a.ClassPlanId INNER JOIN rb_class AS B ON A.ClassId=B.ClassId
INNER JOIN rb_class AS B ON A.ClassId=B.ClassId
LEFT JOIN rb_course AS C ON B.CouseId=C.CourseId LEFT JOIN rb_course AS C ON B.CouseId=C.CourseId
LEFT JOIN rb_teacher AS D ON B.Teacher_Id=D.TId LEFT JOIN rb_teacher AS D ON B.Teacher_Id=D.TId
LEFT JOIN rb_class_room AS E ON A.ClassRoomId=E.RoomId LEFT JOIN rb_class_room AS E ON A.ClassRoomId=E.RoomId
......
...@@ -242,7 +242,8 @@ ORDER BY r.Id desc "; ...@@ -242,7 +242,8 @@ ORDER BY r.Id desc ";
{ {
where += $@" and r.{nameof(RB_Scroll_Appointment_ViewModel.AppointType)} ={demodel.AppointType}"; where += $@" and r.{nameof(RB_Scroll_Appointment_ViewModel.AppointType)} ={demodel.AppointType}";
} }
if (demodel.Q_AppointState > 0) { if (demodel.Q_AppointState > 0)
{
if (demodel.Q_AppointState == 1) if (demodel.Q_AppointState == 1)
{ {
where += $@" and r.{nameof(RB_Scroll_Appointment_ViewModel.State)} =1"; where += $@" and r.{nameof(RB_Scroll_Appointment_ViewModel.State)} =1";
...@@ -252,6 +253,11 @@ ORDER BY r.Id desc "; ...@@ -252,6 +253,11 @@ ORDER BY r.Id desc ";
where += $@" and r.{nameof(RB_Scroll_Appointment_ViewModel.State)} in(2,3,4)"; where += $@" and r.{nameof(RB_Scroll_Appointment_ViewModel.State)} in(2,3,4)";
} }
} }
if (!string.IsNullOrEmpty(demodel.StuName))
{
where += " AND s.StuName LIKE @StuName ";
parameters.Add("StuName", "%" + demodel.StuName + "%");
}
string sql = $@" string sql = $@"
SELECT r.*,c.AccountId as TeacherId,c.WorkUserId,t.TeacherName,t.TeacherHead,s.StuName,sch.OpenId as StuOpenId,cou.CourseName,cou.ScrollMinNum,cou.ScrollMaxNum,cou.CourseTimeId,cr.RoomName SELECT r.*,c.AccountId as TeacherId,c.WorkUserId,t.TeacherName,t.TeacherHead,s.StuName,sch.OpenId as StuOpenId,cou.CourseName,cou.ScrollMinNum,cou.ScrollMaxNum,cou.CourseTimeId,cr.RoomName
......
...@@ -186,7 +186,8 @@ namespace Edu.WebApi.Controllers.Course ...@@ -186,7 +186,8 @@ namespace Edu.WebApi.Controllers.Course
ClassId = base.ParmJObj.GetInt("ClassId"), ClassId = base.ParmJObj.GetInt("ClassId"),
OrderBy = base.ParmJObj.GetInt("OrderBy", 0), OrderBy = base.ParmJObj.GetInt("OrderBy", 0),
ClassType = base.ParmJObj.GetInt("ClassType"),// //课程类型(0-全部,1-正常,2-试听课) ClassType = base.ParmJObj.GetInt("ClassType"),// //课程类型(0-全部,1-正常,2-试听课)
AppointState = base.ParmJObj.GetInt("AppointState", 0)//约课状态 1待确认 2已确认 AppointState = base.ParmJObj.GetInt("AppointState", 0),//约课状态 1待确认 2已确认
StuName = base.ParmJObj.GetStringValue("StuName")
}; };
var result = classModule.GetTeacherPlan(pageModel.PageIndex, pageModel.PageSize, out long rowsCount, query); var result = classModule.GetTeacherPlan(pageModel.PageIndex, pageModel.PageSize, out long rowsCount, query);
pageModel.Count = rowsCount; pageModel.Count = rowsCount;
......
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