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

新增约课等级判断

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