Commit c9327275 authored by 黄奎's avatar 黄奎

页面修改

parent 8b91ef42
...@@ -881,8 +881,11 @@ namespace Edu.Module.Customer ...@@ -881,8 +881,11 @@ namespace Edu.Module.Customer
/// <summary> /// <summary>
/// 市场部渠道数据统计 /// 市场部渠道数据统计
/// </summary> /// </summary>
/// <param name="StartTime">开始时间</param>
/// <param name="EndTime">结束时间</param>
/// <param name="qEmpIds">员工编号</param>
/// <returns></returns> /// <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>(); List<object> list = new List<object>();
var empList = accountRepository.GetEmployeeListRepository(new Employee_ViewModel() var empList = accountRepository.GetEmployeeListRepository(new Employee_ViewModel()
...@@ -890,7 +893,8 @@ namespace Edu.Module.Customer ...@@ -890,7 +893,8 @@ namespace Edu.Module.Customer
//市场部编号4,课程顾问部编号13 //市场部编号4,课程顾问部编号13
QDeptIds = "4", QDeptIds = "4",
Group_Id = 100000, Group_Id = 100000,
IsLeave = 1 IsLeave = 1,
QIds= qEmpIds
}); });
if (empList != null && empList.Count > 0) if (empList != null && empList.Count > 0)
{ {
......
...@@ -2790,7 +2790,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -2790,7 +2790,7 @@ namespace Edu.WebApi.Controllers.User
{ {
qEmpIds = string.Join(",", empList); qEmpIds = string.Join(",", empList);
} }
var data = marketConsultantModule.MarketChannelStudentStaticModule(startTime, endTime); var data = marketConsultantModule.MarketChannelStudentStaticModule(startTime, endTime, qEmpIds);
return ApiResult.Success(data: data); return ApiResult.Success(data: data);
} }
......
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