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
4c4bd695
Commit
4c4bd695
authored
Apr 26, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
3241642d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
143 additions
and
92 deletions
+143
-92
RB_Student_ViewModel.cs
Edu.Model/ViewModel/User/RB_Student_ViewModel.cs
+10
-0
RB_Student_OrderGuestRepository.cs
Edu.Repository/User/RB_Student_OrderGuestRepository.cs
+14
-3
StudentStatController.cs
Edu.WebApi/Controllers/User/StudentStatController.cs
+119
-89
No files found.
Edu.Model/ViewModel/User/RB_Student_ViewModel.cs
View file @
4c4bd695
...
@@ -269,6 +269,11 @@ namespace Edu.Model.ViewModel.User
...
@@ -269,6 +269,11 @@ namespace Edu.Model.ViewModel.User
/// </summary>
/// </summary>
public
int
ConsultantId
{
get
;
set
;
}
public
int
ConsultantId
{
get
;
set
;
}
/// <summary>
/// 课程顾问编号【逗号分隔】
/// </summary>
public
string
ConsultantIds
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 渠道名称
/// 渠道名称
/// </summary>
/// </summary>
...
@@ -431,6 +436,11 @@ namespace Edu.Model.ViewModel.User
...
@@ -431,6 +436,11 @@ namespace Edu.Model.ViewModel.User
/// </summary>
/// </summary>
public
int
HeadTeacherId
{
get
;
set
;
}
public
int
HeadTeacherId
{
get
;
set
;
}
/// <summary>
/// 班主任【逗号分隔】
/// </summary>
public
string
HeadTeacherIds
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 查询类型(1-课程顾问,2-老师,3-市场)
/// 查询类型(1-课程顾问,2-老师,3-市场)
/// </summary>
/// </summary>
...
...
Edu.Repository/User/RB_Student_OrderGuestRepository.cs
View file @
4c4bd695
...
@@ -399,14 +399,17 @@ where sog.Status =0 and o.Group_Id ={group_Id} and o.OrderState <>3 and IFNULL(o
...
@@ -399,14 +399,17 @@ where sog.Status =0 and o.Group_Id ={group_Id} and o.OrderState <>3 and IFNULL(o
{
{
DynamicParameters
parameters
=
new
DynamicParameters
();
DynamicParameters
parameters
=
new
DynamicParameters
();
string
where
=
" 1=1 and s.Status =0 and c.CourseId <>1"
;
//排除内部班课程
string
where
=
" 1=1 and s.Status =0 and c.CourseId <>1"
;
//排除内部班课程
if
(
demodel
.
Group_Id
>
0
)
{
if
(
demodel
.
Group_Id
>
0
)
{
where
+=
$" and s.
{
nameof
(
RB_Student_ViewModel
.
Group_Id
)}
=
{
demodel
.
Group_Id
}
"
;
where
+=
$" and s.
{
nameof
(
RB_Student_ViewModel
.
Group_Id
)}
=
{
demodel
.
Group_Id
}
"
;
}
}
if
(!
string
.
IsNullOrEmpty
(
demodel
.
StuName
))
{
if
(!
string
.
IsNullOrEmpty
(
demodel
.
StuName
))
{
where
+=
$" and s.
{
nameof
(
RB_Student_ViewModel
.
StuName
)}
like @StuName"
;
where
+=
$" and s.
{
nameof
(
RB_Student_ViewModel
.
StuName
)}
like @StuName"
;
parameters
.
Add
(
"StuName"
,
"%"
+
demodel
.
StuName
+
"%"
);
parameters
.
Add
(
"StuName"
,
"%"
+
demodel
.
StuName
+
"%"
);
}
}
if
(!
string
.
IsNullOrEmpty
(
demodel
.
StuRealMobile
))
{
if
(!
string
.
IsNullOrEmpty
(
demodel
.
StuRealMobile
))
{
where
+=
$" and s.
{
nameof
(
RB_Student_ViewModel
.
StuRealMobile
)}
like @StuRealMobile"
;
where
+=
$" and s.
{
nameof
(
RB_Student_ViewModel
.
StuRealMobile
)}
like @StuRealMobile"
;
parameters
.
Add
(
"StuRealMobile"
,
"%"
+
demodel
.
StuRealMobile
+
"%"
);
parameters
.
Add
(
"StuRealMobile"
,
"%"
+
demodel
.
StuRealMobile
+
"%"
);
}
}
...
@@ -460,10 +463,18 @@ where sog.Status =0 and o.Group_Id ={group_Id} and o.OrderState <>3 and IFNULL(o
...
@@ -460,10 +463,18 @@ where sog.Status =0 and o.Group_Id ={group_Id} and o.OrderState <>3 and IFNULL(o
{
{
where
+=
$@" AND s.StuId IN (SELECT StuId FROM rb_student_assist WHERE AssistId =
{
demodel
.
ConsultantId
}
AND `Status`=0)"
;
where
+=
$@" AND s.StuId IN (SELECT StuId FROM rb_student_assist WHERE AssistId =
{
demodel
.
ConsultantId
}
AND `Status`=0)"
;
}
}
if
(!
string
.
IsNullOrEmpty
(
demodel
.
ConsultantIds
))
{
where
+=
$@" AND s.StuId IN (SELECT StuId FROM rb_student_assist WHERE AssistId IN(
{
demodel
.
ConsultantIds
}
) AND `Status`=0)"
;
}
if
(
demodel
.
HeadTeacherId
>
0
)
if
(
demodel
.
HeadTeacherId
>
0
)
{
{
where
+=
$@" AND s.StuId IN (SELECT StuId FROM rb_student_assist WHERE AssistId =
{
demodel
.
HeadTeacherId
}
AND `Status`=0 AND AssistType=4)"
;
where
+=
$@" AND s.StuId IN (SELECT StuId FROM rb_student_assist WHERE AssistId =
{
demodel
.
HeadTeacherId
}
AND `Status`=0 AND AssistType=4)"
;
}
}
if
(!
string
.
IsNullOrEmpty
(
demodel
.
HeadTeacherIds
))
{
where
+=
$@" AND s.StuId IN (SELECT StuId FROM rb_student_assist WHERE AssistId IN(
{
demodel
.
HeadTeacherIds
}
) AND `Status`=0 AND AssistType=4)"
;
}
if
(
demodel
.
CourseId
>
0
)
if
(
demodel
.
CourseId
>
0
)
{
{
where
+=
$" and o.CourseId =
{
demodel
.
CourseId
}
"
;
where
+=
$" and o.CourseId =
{
demodel
.
CourseId
}
"
;
...
...
Edu.WebApi/Controllers/User/StudentStatController.cs
View file @
4c4bd695
This diff is collapsed.
Click to expand it.
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