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
c9327275
Commit
c9327275
authored
Jan 26, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
8b91ef42
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
MarketConsultantModule.cs
Edu.Module.Customer/MarketConsultantModule.cs
+6
-2
UserCenterController.cs
Edu.WebApi/Controllers/User/UserCenterController.cs
+1
-1
No files found.
Edu.Module.Customer/MarketConsultantModule.cs
View file @
c9327275
...
...
@@ -881,8 +881,11 @@ namespace Edu.Module.Customer
/// <summary>
/// 市场部渠道数据统计
/// </summary>
/// <param name="StartTime">开始时间</param>
/// <param name="EndTime">结束时间</param>
/// <param name="qEmpIds">员工编号</param>
/// <returns></returns>
public
List
<
object
>
MarketChannelStudentStaticModule
(
string
StartTime
,
string
EndTime
)
public
List
<
object
>
MarketChannelStudentStaticModule
(
string
StartTime
,
string
EndTime
,
string
qEmpIds
)
{
List
<
object
>
list
=
new
List
<
object
>();
var
empList
=
accountRepository
.
GetEmployeeListRepository
(
new
Employee_ViewModel
()
...
...
@@ -890,7 +893,8 @@ namespace Edu.Module.Customer
//市场部编号4,课程顾问部编号13
QDeptIds
=
"4"
,
Group_Id
=
100000
,
IsLeave
=
1
IsLeave
=
1
,
QIds
=
qEmpIds
});
if
(
empList
!=
null
&&
empList
.
Count
>
0
)
{
...
...
Edu.WebApi/Controllers/User/UserCenterController.cs
View file @
c9327275
...
...
@@ -2790,7 +2790,7 @@ namespace Edu.WebApi.Controllers.User
{
qEmpIds
=
string
.
Join
(
","
,
empList
);
}
var
data
=
marketConsultantModule
.
MarketChannelStudentStaticModule
(
startTime
,
endTime
);
var
data
=
marketConsultantModule
.
MarketChannelStudentStaticModule
(
startTime
,
endTime
,
qEmpIds
);
return
ApiResult
.
Success
(
data
:
data
);
}
...
...
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