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
4e1e5818
Commit
4e1e5818
authored
Jan 14, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/Kui2/education
parents
34c16d0f
e231d1eb
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
QuarzHelper.cs
Edu.EducationCore/Helper/QuarzHelper.cs
+1
-0
StudentStatModule.cs
Edu.Module.User/StudentStatModule.cs
+1
-1
StudentStatController.cs
Edu.WebApi/Controllers/User/StudentStatController.cs
+9
-1
No files found.
Edu.EducationCore/Helper/QuarzHelper.cs
View file @
4e1e5818
...
...
@@ -474,6 +474,7 @@ namespace Edu.Education.Helper
Console
.
WriteLine
(
"开始执行简易报表...."
);
financeModule
.
InsertBatchSimple_V2
(
100000
,
2020
);
financeModule
.
InsertBatchSimple_V2
(
100000
,
2021
);
financeModule
.
InsertBatchSimple_V2
(
100000
,
2022
);
Console
.
WriteLine
(
"结束执行简易报表...."
);
}
catch
(
Exception
ex
)
...
...
Edu.Module.User/StudentStatModule.cs
View file @
4e1e5818
...
...
@@ -143,7 +143,7 @@ namespace Edu.Module.User
//续费 学员介绍
List
<
object
>
RList2
=
new
List
<
object
>();
List
<
int
>
Mlist
=
ROList
.
Select
(
x
=>
x
.
Month
).
Distinct
().
OrderBy
(
x
=>
x
).
ToList
();
int
MaxRO
=
ROList
.
Max
(
x
=>
x
.
Month
)
;
int
MaxRO
=
ROList
.
Any
()
?
ROList
.
Max
(
x
=>
x
.
Month
)
:
0
;
MaxMonth
=
MaxMonth
<
MaxRO
?
MaxRO
:
MaxMonth
;
foreach
(
var
month
in
Mlist
)
{
RList2
.
Add
(
new
...
...
Edu.WebApi/Controllers/User/StudentStatController.cs
View file @
4e1e5818
...
...
@@ -43,7 +43,15 @@ namespace Edu.WebApi.Controllers.User
ResultPageModel
pmodel
=
JsonHelper
.
DeserializeObject
<
ResultPageModel
>(
base
.
RequestParm
.
Msg
.
ToString
());
RB_Student_ViewModel
demodel
=
JsonHelper
.
DeserializeObject
<
RB_Student_ViewModel
>(
base
.
RequestParm
.
Msg
.
ToString
());
demodel
.
Group_Id
=
userInfo
.
Group_Id
;
if
(
demodel
.
IsQueryMyStu
==
1
)
{
demodel
.
CreateBy
=
userInfo
.
Id
;
}
else
{
if
(
demodel
.
BelongType
==
1
)
{
demodel
.
BelongType
=
0
;
//暂先查全部
}
}
var
list
=
studentStatModule
.
GetStudentFollowUpPageList
(
pmodel
.
PageIndex
,
pmodel
.
PageSize
,
out
long
count
,
demodel
);
pmodel
.
Count
=
count
;
...
...
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