Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
517d56ea
Commit
517d56ea
authored
Sep 18, 2024
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增约课等级判断
parent
451eaf8f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
42 deletions
+41
-42
ScheduleCourseModule.cs
Edu.Module.Course/ScheduleCourseModule.cs
+20
-21
ScrollClassModule.cs
Edu.Module.Course/ScrollClassModule.cs
+21
-21
No files found.
Edu.Module.Course/ScheduleCourseModule.cs
View file @
517d56ea
...
...
@@ -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
}
}
...
...
Edu.Module.Course/ScrollClassModule.cs
View file @
517d56ea
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment