Commit 517d56ea authored by 黄奎's avatar 黄奎

新增约课等级判断

parent 451eaf8f
...@@ -184,27 +184,26 @@ namespace Edu.Module.Course ...@@ -184,27 +184,26 @@ namespace Edu.Module.Course
#region 判断是否显示当前约课等级 #region 判断是否显示当前约课等级
//var tempPlanShow = stuPlanShowList?.FirstOrDefault(qitem => qitem.OrderId == item.OrderId); var tempPlanShow = stuPlanShowList?.FirstOrDefault(qitem => qitem.OrderId == item.OrderId);
//if (tempPlanShow != null && tempPlanShow.Id > 0) if (tempPlanShow != null && tempPlanShow.Id > 0)
//{ {
// var tempPlanShowRateList = Common.Plugin.StringHelper.StringToListInt((tempPlanShow?.ShowRetes ?? "")); var tempPlanShowRateList = Common.Plugin.StringHelper.StringToListInt((tempPlanShow?.ShowRetes ?? ""));
// if (tempPlanShowRateList != null && tempPlanShowRateList.Count > 0) if (tempPlanShowRateList != null && tempPlanShowRateList.Count > 0)
// { {
// if (tempPlanShowRateList.Any(x => x == query.QCourseRate.ToInt())) if (tempPlanShowRateList.Any(x => x == query.QCourseRate.ToInt()))
// { {
// dataList.Add(item); dataList.Add(item);
// } }
// } }
// else else
// { {
// dataList.Add(item); dataList.Add(item);
// } }
//} }
//else else
//{ {
// dataList.Add(item); dataList.Add(item);
//} }
dataList.Add(item);
#endregion #endregion
} }
} }
......
...@@ -2294,28 +2294,28 @@ namespace Edu.Module.Course ...@@ -2294,28 +2294,28 @@ namespace Edu.Module.Course
item.CourseRate = tempChapter?.CourseRate ?? Common.Enum.Course.CourseRateEnum.N5; item.CourseRate = tempChapter?.CourseRate ?? Common.Enum.Course.CourseRateEnum.N5;
#region 判断是否显示当前约课等级 #region 判断是否显示当前约课等级
//var tempPlanShow = stuPlanShowList?.FirstOrDefault(qitem => qitem.OrderId == item.OrderId); var tempPlanShow = stuPlanShowList?.FirstOrDefault(qitem => qitem.OrderId == item.OrderId);
//if (tempPlanShow != null && tempPlanShow.Id > 0) if (tempPlanShow != null && tempPlanShow.Id > 0)
//{ {
// var tempPlanShowRateList = Common.Plugin.StringHelper.StringToListInt((tempPlanShow?.ShowRetes ?? "")); var tempPlanShowRateList = Common.Plugin.StringHelper.StringToListInt((tempPlanShow?.ShowRetes ?? ""));
// if (tempPlanShowRateList != null && tempPlanShowRateList.Count > 0) if (tempPlanShowRateList != null && tempPlanShowRateList.Count > 0)
// { {
// if (tempPlanShowRateList.Any(x => x == CourseGradeId)) if (tempPlanShowRateList.Any(x => x == CourseGradeId))
// { {
// dataList.Add(item); dataList.Add(item);
// } }
// } }
// else else
// { {
// dataList.Add(item); dataList.Add(item);
// } }
//} }
//else else
//{ {
// dataList.Add(item); dataList.Add(item);
//} }
#endregion #endregion
dataList.Add(item); //dataList.Add(item);
} }
} }
return dataList; return dataList;
......
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