Commit 06c148c1 authored by liudong1993's avatar liudong1993

Merge branch 'master' of http://gitlab.oytour.com/Kui2/education

parents 1d1fb8ce 2487d61f
...@@ -142,6 +142,11 @@ namespace Edu.Model.Entity.User ...@@ -142,6 +142,11 @@ namespace Edu.Model.Entity.User
/// </summary> /// </summary>
public OrderSourceEnum StuSource { get; set; } public OrderSourceEnum StuSource { get; set; }
/// <summary>
/// 来源人编号
/// </summary>
public int StuSourceId { get; set; }
/// <summary> /// <summary>
/// 学员地址 /// 学员地址
/// </summary> /// </summary>
...@@ -168,9 +173,9 @@ namespace Edu.Model.Entity.User ...@@ -168,9 +173,9 @@ namespace Edu.Model.Entity.User
public string StuIDCardAddress { get; set; } public string StuIDCardAddress { get; set; }
/// <summary> /// <summary>
/// 录入方式(1-员工录入,2-同业录入) /// 客户来源见枚举
/// </summary> /// </summary>
public int CreateType { get; set; } public StuCreateTypeEnum CreateType { get; set; }
/// <summary> /// <summary>
/// 客户阶段(见枚举) /// 客户阶段(见枚举)
......
...@@ -209,5 +209,10 @@ namespace Edu.Model.ViewModel.User ...@@ -209,5 +209,10 @@ namespace Edu.Model.ViewModel.User
/// 同行 /// 同行
/// </summary> /// </summary>
public string CustomerName { get; set; } public string CustomerName { get; set; }
/// <summary>
/// 来源人名称
/// </summary>
public string StuSourceIdName { get; set; }
} }
} }
\ No newline at end of file
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Common.Enum.Duty; using Edu.Common.Enum.Duty;
using Edu.Common.Enum.System; using Edu.Common.Enum.System;
using Edu.Common.Enum.User;
using Edu.Common.Message; using Edu.Common.Message;
using Edu.Model.CacheModel; using Edu.Model.CacheModel;
using Edu.Model.ViewModel.Duty; using Edu.Model.ViewModel.Duty;
using Edu.Model.ViewModel.Reserve;
using Edu.Model.ViewModel.User; using Edu.Model.ViewModel.User;
using Edu.Repository.Duty; using Edu.Repository.Duty;
using Edu.Repository.Reserve;
using Edu.Repository.User; using Edu.Repository.User;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
...@@ -56,6 +59,16 @@ namespace Edu.Module.Duty ...@@ -56,6 +59,16 @@ namespace Edu.Module.Duty
/// </summary> /// </summary>
private readonly RB_Duty_FrequencyRepository duty_FrequencyRepository = new RB_Duty_FrequencyRepository(); private readonly RB_Duty_FrequencyRepository duty_FrequencyRepository = new RB_Duty_FrequencyRepository();
/// <summary>
/// 试听课仓储层对象
/// </summary>
private readonly RB_Visitor_ReserveRepository visitor_ReserveRepository = new RB_Visitor_ReserveRepository();
/// <summary>
/// 学员仓储层对象
/// </summary>
public readonly RB_StudentRepository studentRepository = new RB_StudentRepository();
/// <summary> /// <summary>
/// 获取值班计划分页列表【管理端】 /// 获取值班计划分页列表【管理端】
/// </summary> /// </summary>
...@@ -1644,5 +1657,61 @@ namespace Edu.Module.Duty ...@@ -1644,5 +1657,61 @@ namespace Edu.Module.Duty
} }
} }
} }
/// <summary>
/// 访客转学员
/// </summary>
public void TransVisitorToStu()
{
var list = visitorRepository.GetVisitorPageRepository(1, 1000, out _, new RB_Visitor_ViewModel()
{
Group_Id= 100000
});
var classList = visitor_ReserveRepository.GetVisitorReserveListRepository(new Model.ViewModel.Reserve.RB_Visitor_Reserve_Extend()
{
});
foreach (var item in list)
{
var extModel = new RB_Student_ViewModel()
{
StuId = 0,
StuName = item.Name,
StuTel = item.Tel,
StuIcon ="",
StuSex = 0,
StuChannel = StuChannelEnum.PassBy
};
if (extModel.StuId == 0)
{
extModel.CreateType = StuCreateTypeEnum.EmployeeInput;
}
extModel.Status = DateStateEnum.Normal;
extModel.StuStatus = 1;
extModel.CreateTime = DateTime.Now;
extModel.UpdateTime = DateTime.Now;
extModel.CreateBy = item.CreateBy;
extModel.CreateTime = DateTime.Now;
extModel.UpdateBy = item.CreateBy;
extModel.UpdateTime = DateTime.Now;
extModel.Group_Id = item.Group_Id;
extModel.CustomerId = 0;
extModel.IsDisable = 1;
bool flag = studentRepository.SetStudentRepository(extModel);
//更新试听班级学员关联
var tempList = classList.Where(qitem => qitem.Visitor_Id == item.Id)?.ToList();
foreach (var cItem in tempList)
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{nameof(RB_Visitor_Reserve_Extend.Visitor_Id),extModel.StuId }
};
visitor_ReserveRepository.Update(fileds, new WhereHelper(nameof(RB_Visitor_Reserve_Extend.Id), cItem.Id));
}
}
}
} }
} }
...@@ -99,14 +99,17 @@ namespace Edu.Module.User ...@@ -99,14 +99,17 @@ namespace Edu.Module.User
if (list != null && list.Count > 0) if (list != null && list.Count > 0)
{ {
string stuIds = string.Join(",", list.Select(qitem => qitem.StuId)); string stuIds = string.Join(",", list.Select(qitem => qitem.StuId));
//学员跟进
var followList= followRepository.GetStudentFollowListRepository(new Model.ViewModel.Customer.RB_Student_Follow_Extend() var followList= followRepository.GetStudentFollowListRepository(new Model.ViewModel.Customer.RB_Student_Follow_Extend()
{ {
QStuIds = stuIds QStuIds = stuIds
}); });
//学员订单
var stuOrderList = student_OrderGuestRepository.GetStrOrderGuestListRepository(new RB_Student_OrderGuest_ViewModel() var stuOrderList = student_OrderGuestRepository.GetStrOrderGuestListRepository(new RB_Student_OrderGuest_ViewModel()
{ {
QStudentIds = stuIds QStudentIds = stuIds
}); });
//本周新增
var stuList= studentRepository.GetCustomerStuWeekListRepository(new RB_Student_ViewModel() var stuList= studentRepository.GetCustomerStuWeekListRepository(new RB_Student_ViewModel()
{ {
CustomerId = query.CustomerId CustomerId = query.CustomerId
...@@ -116,11 +119,16 @@ namespace Edu.Module.User ...@@ -116,11 +119,16 @@ namespace Edu.Module.User
{ {
QStuIds = stuIds QStuIds = stuIds
}); });
string aIds = string.Join(",", assistList.Select(qitem => qitem.AssistId)); List<int> empIdList= Common.ConvertHelper.StringToList(string.Join(",", list.Select(qitem => qitem.StuSourceId)));
List<int> aIds = Common.ConvertHelper.StringToList(string.Join(",", assistList.Select(qitem => qitem.AssistId)));
List<RB_Account_ViewModel> accountList = new List<RB_Account_ViewModel>(); List<RB_Account_ViewModel> accountList = new List<RB_Account_ViewModel>();
if (!string.IsNullOrEmpty(aIds)) if (aIds!=null&&aIds.Count>0)
{ {
accountList= accountModule.GetAccountListExtModule(new RB_Account_ViewModel() { QIds = aIds }); empIdList.AddRange(aIds);
}
if (empIdList != null && empIdList.Count > 0)
{
accountList = accountModule.GetAccountListExtModule(new RB_Account_ViewModel() { QIds = string.Join(",", empIdList) });
} }
//学员到访统计 //学员到访统计
var visitList = student_VisitRepository.GetStudentVisitStaticRepository(new RB_Student_Visit_Extend() var visitList = student_VisitRepository.GetStudentVisitStaticRepository(new RB_Student_Visit_Extend()
...@@ -180,6 +188,7 @@ namespace Edu.Module.User ...@@ -180,6 +188,7 @@ namespace Edu.Module.User
item.AssistList = tempAssistList; item.AssistList = tempAssistList;
item.VisitCount = visitList?.FirstOrDefault(qitem => qitem.StuId == item.StuId)?.VisitCount ?? 0; item.VisitCount = visitList?.FirstOrDefault(qitem => qitem.StuId == item.StuId)?.VisitCount ?? 0;
item.TrialLessonCount = stuReserveList?.FirstOrDefault(qitem => qitem.Visitor_Id == item.StuId)?.TrialLessonCount ?? 0; item.TrialLessonCount = stuReserveList?.FirstOrDefault(qitem => qitem.Visitor_Id == item.StuId)?.TrialLessonCount ?? 0;
item.StuSourceIdName = accountList?.FirstOrDefault(qitem => qitem.Id == item.StuSourceId)?.AccountName ?? "";
} }
} }
return list; return list;
...@@ -209,6 +218,18 @@ namespace Edu.Module.User ...@@ -209,6 +218,18 @@ namespace Edu.Module.User
return studentRepository.Exists(where); return studentRepository.Exists(where);
} }
/// <summary>
/// 跟进电话号码获取学员信息
/// </summary>
/// <param name="Tel"></param>
/// <returns></returns>
public RB_Student_ViewModel GetStuByTelModule(string Tel)
{
var model = studentRepository.GetStuByTelRepository(new RB_Student_ViewModel() { StuTel = Tel });
return model;
}
/// <summary> /// <summary>
/// 添加修改学生 /// 添加修改学生
/// </summary> /// </summary>
......
using Edu.Model.Entity.Customer; using Edu.Common.Enum;
using Edu.Model.Entity.Customer;
using Edu.Model.ViewModel.Customer; using Edu.Model.ViewModel.Customer;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
...@@ -25,6 +26,7 @@ SELECT A.* ...@@ -25,6 +26,7 @@ SELECT A.*
FROM RB_Student_Assist AS A FROM RB_Student_Assist AS A
WHERE 1=1 WHERE 1=1
"); ");
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_Student_Assist_Extend.Status), (int)DateStateEnum.Normal);
if (query != null) if (query != null)
{ {
if (query.StuId > 0) if (query.StuId > 0)
......
...@@ -184,6 +184,10 @@ WHERE 1=1 ...@@ -184,6 +184,10 @@ WHERE 1=1
{ {
builder.AppendFormat(" AND t.{0}<='{1} 23:59:59' ", nameof(RB_Student_ViewModel.CreateTime), query.EndTime); builder.AppendFormat(" AND t.{0}<='{1} 23:59:59' ", nameof(RB_Student_ViewModel.CreateTime), query.EndTime);
} }
if (!string.IsNullOrEmpty(query.QDate))
{
builder.AppendFormat(" AND DATE_FORMAT(t.{0},'%y/%m/%d')= DATE_FORMAT('{1}','%y/%m/%d') ", nameof(RB_Student_ViewModel.CreateTime), query.QDate);
}
} }
builder.AppendFormat(" ORDER BY t.{0} DESC ", nameof(RB_Student_ViewModel.StuId)); builder.AppendFormat(" ORDER BY t.{0} DESC ", nameof(RB_Student_ViewModel.StuId));
return GetPage<RB_Student_ViewModel>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList(); return GetPage<RB_Student_ViewModel>(pageIndex, pageSize, out rowsCount, builder.ToString(), parameters).ToList();
...@@ -327,12 +331,17 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an ...@@ -327,12 +331,17 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an
{nameof(RB_Student_ViewModel.StuStage),model.StuStage }, {nameof(RB_Student_ViewModel.StuStage),model.StuStage },
{nameof(RB_Student_ViewModel.StuChannel),model.StuChannel }, {nameof(RB_Student_ViewModel.StuChannel),model.StuChannel },
{nameof(RB_Student_ViewModel.PlatformName),model.PlatformName }, {nameof(RB_Student_ViewModel.PlatformName),model.PlatformName },
{nameof(RB_Student_ViewModel.StuSourceId),model.StuSourceId}
}; };
flag = base.Update(fileds, new WhereHelper(nameof(RB_Student_ViewModel.StuId), model.StuId)); flag = base.Update(fileds, new WhereHelper(nameof(RB_Student_ViewModel.StuId), model.StuId));
createBy = model.UpdateBy; createBy = model.UpdateBy;
} }
else else
{ {
if (model.StuStage <= 0)
{
model.StuStage = Common.Enum.User.StuStageEnum.NewStu;
}
var newId = base.Insert(model); var newId = base.Insert(model);
model.StuId = newId; model.StuId = newId;
flag = newId > 0; flag = newId > 0;
...@@ -354,7 +363,7 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an ...@@ -354,7 +363,7 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an
UpdateTime = DateTime.Now, UpdateTime = DateTime.Now,
Password = Common.DES.Encrypt(Common.Config.DefaultPwd) Password = Common.DES.Encrypt(Common.Config.DefaultPwd)
}); });
if (model.CreateType == 1) if (model.CreateType == Common.Enum.User.StuCreateTypeEnum.EmployeeInput)
{ {
createBy = model.CreateBy; createBy = model.CreateBy;
} }
...@@ -365,7 +374,7 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an ...@@ -365,7 +374,7 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an
logContent = "创建了该客户"; logContent = "创建了该客户";
logTitle = "创建客户"; logTitle = "创建客户";
} }
student_LogRepository.AddStuLogRepository(model.StuId, Common.Enum.Log.StudentLogTypeEnum.BasicInfo, logTitle, logContent, createBy, CreateType: model.CreateType); student_LogRepository.AddStuLogRepository(model.StuId, Common.Enum.Log.StudentLogTypeEnum.BasicInfo, logTitle, logContent, createBy, CreateType: (int)model.CreateType);
return flag; return flag;
} }
...@@ -468,5 +477,38 @@ WHERE 1=1 AND YEARWEEK(date_format(t.CreateTime, '%Y-%m-%d')) = YEARWEEK(now()) ...@@ -468,5 +477,38 @@ WHERE 1=1 AND YEARWEEK(date_format(t.CreateTime, '%Y-%m-%d')) = YEARWEEK(now())
} }
return Get<RB_Student_ViewModel>(builder.ToString(), parameters).ToList(); return Get<RB_Student_ViewModel>(builder.ToString(), parameters).ToList();
} }
/// <summary>
/// 跟进电话号码获取学员信息
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public RB_Student_ViewModel GetStuByTelRepository(RB_Student_ViewModel query)
{
var parameters = new DynamicParameters();
StringBuilder builder = new StringBuilder();
builder.AppendFormat(@"
SELECT t.*
FROM rb_student AS t
WHERE 1=1
");
builder.AppendFormat(" AND t.{0}={1} ", nameof(RB_Student_ViewModel.Status), (int)DateStateEnum.Normal);
if (query != null)
{
if (query.Group_Id > 0)
{
builder.AppendFormat(" AND t.{0}={1} ", nameof(RB_Student_ViewModel.Group_Id), query.Group_Id);
}
if (query.School_Id > -1)
{
builder.AppendFormat(" AND t.{0}={1} ", nameof(RB_Student_ViewModel.School_Id), query.School_Id);
}
if (!string.IsNullOrWhiteSpace(query.StuTel))
{
builder.AppendFormat(" AND t.{0}='{1}' ", nameof(RB_Student_ViewModel.StuTel), query.StuTel);
}
}
return Get<RB_Student_ViewModel>(builder.ToString(), parameters)?.FirstOrDefault();
}
} }
} }
\ No newline at end of file
...@@ -452,7 +452,7 @@ namespace Edu.WebApi.Controllers.Customer ...@@ -452,7 +452,7 @@ namespace Edu.WebApi.Controllers.Customer
{ {
int Id = base.ParmJObj.GetInt("Id"); int Id = base.ParmJObj.GetInt("Id");
bool flag = customerStudentModule.RemoveStudentAssistModule(Id, base.UserInfo.Id); bool flag = customerStudentModule.RemoveStudentAssistModule(Id, base.UserInfo.Id);
return ApiResult.Failed(); return flag ? ApiResult.Success() : ApiResult.Failed();
} }
/// <summary> /// <summary>
......
...@@ -35,11 +35,6 @@ namespace Edu.WebApi.Controllers.Duty ...@@ -35,11 +35,6 @@ namespace Edu.WebApi.Controllers.Duty
/// </summary> /// </summary>
private readonly DutyPlanModule dutyPlanModule = AOP.AOPHelper.CreateAOPObject<DutyPlanModule>(); private readonly DutyPlanModule dutyPlanModule = AOP.AOPHelper.CreateAOPObject<DutyPlanModule>();
/// <summary>
/// 学员处理类对象
/// </summary>
private readonly StudentModule studentModule = AOP.AOPHelper.CreateAOPObject<StudentModule>();
/// <summary> /// <summary>
/// 客户学员处理类对象 /// 客户学员处理类对象
/// </summary> /// </summary>
...@@ -761,67 +756,5 @@ namespace Edu.WebApi.Controllers.Duty ...@@ -761,67 +756,5 @@ namespace Edu.WebApi.Controllers.Duty
var data = classModule.GetDateTrialLessonModule(planDate, planDate); var data = classModule.GetDateTrialLessonModule(planDate, planDate);
return ApiResult.Success(data: data); return ApiResult.Success(data: data);
} }
/// <summary>
/// 获取学生分页列表
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult DutyGetStudentPageList()
{
var pageModel = Common.Plugin.JsonHelper.DeserializeObject<ResultPageModel>(RequestParm.Msg.ToString());
var query = new RB_Student_ViewModel()
{
KeyWords = base.ParmJObj.GetStringValue("KeyWords")
};
if (query.IsQueryMyStu == 1)
{
query.CreateBy = base.UserInfo.Id;
}
query.Group_Id = base.UserInfo.Group_Id;
var data = studentModule.GetStudentPageListModule(pageModel.PageIndex, pageModel.PageSize, out long rowsCount, query);
List<object> list = new List<object>();
foreach (var item in data)
{
if (item.CreateBy > 0)
{
item.CreateByName = UserReidsCache.GetUserLoginInfo(item.CreateBy)?.AccountName ?? "";
}
list.Add(new
{
item.StuId,
item.StuName,
item.StuTel,
item.StuIcon,
item.StuSex,
StuSexStr = item.StuSex == 0 ? "男" : "女",
StuBirth = Common.ConvertHelper.FormatDate(item.StuBirth),
item.StuStage,
StuStageName = item.StuStage.ToName(),
CreateTimeStr = Common.ConvertHelper.FormatTime(item.CreateTime),
item.CreateByName,
item.CreateType,
CreateTypeStr = item.CreateType == 1 ? "员工录入" : "同业录入",
item.StuChannel,
StuChannelName = item.StuChannel.ToName(),
item.PlatformName,
item.CustomerId,
AssistList = item.AssistList.Select(qitem => new
{
qitem.Id,
qitem.StuId,
qitem.AssistId,
qitem.AssistName,
qitem.AssistType,
AssistTypeName = qitem.AssistType.ToName()
}),
});
}
pageModel.Count = rowsCount;
pageModel.PageData = list;
return ApiResult.Success(data: pageModel);
}
} }
} }
...@@ -10,6 +10,7 @@ using Edu.Common.Plugin; ...@@ -10,6 +10,7 @@ using Edu.Common.Plugin;
using Edu.Model.CacheModel; using Edu.Model.CacheModel;
using Edu.Model.ViewModel.System; using Edu.Model.ViewModel.System;
using Edu.Model.ViewModel.User; using Edu.Model.ViewModel.User;
using Edu.Module.Duty;
using Edu.Module.Public; using Edu.Module.Public;
using Edu.Module.System; using Edu.Module.System;
using Edu.Module.User; using Edu.Module.User;
...@@ -53,21 +54,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -53,21 +54,7 @@ namespace Edu.WebApi.Controllers.User
[AllowAnonymous] [AllowAnonymous]
public ApiResult Test() public ApiResult Test()
{ {
//Common.Message.MessageHelper.SendMessage(new Common.Message.PushMessageModel() new DutyPlanModule().TransVisitorToStu();
//{
// CategoryId = 0,
// Content = "1111",
// CoverImg = "",
// CreateByName = "HK",
// JumpUrl = "",
// MsgSign = "1",
// MsgTemplateCode = "",
// Platform = 2,
// ReceiveId = "1",
// SendTime = DateTime.Now,
// SendType = 0,
// Title = "HKHK"
//});
return ApiResult.Success(); return ApiResult.Success();
} }
......
...@@ -13,6 +13,7 @@ using Edu.Model.ViewModel.Customer; ...@@ -13,6 +13,7 @@ using Edu.Model.ViewModel.Customer;
using Edu.Model.ViewModel.Log; using Edu.Model.ViewModel.Log;
using Edu.Model.ViewModel.User; using Edu.Model.ViewModel.User;
using Edu.Module.Course; using Edu.Module.Course;
using Edu.Module.Duty;
using Edu.Module.Log; using Edu.Module.Log;
using Edu.Module.User; using Edu.Module.User;
using Edu.WebApi.Filter; using Edu.WebApi.Filter;
...@@ -97,6 +98,11 @@ namespace Edu.WebApi.Controllers.User ...@@ -97,6 +98,11 @@ namespace Edu.WebApi.Controllers.User
/// </summary> /// </summary>
private readonly ClassModule classModule = new ClassModule(); private readonly ClassModule classModule = new ClassModule();
/// <summary>
/// 值班计划处理类对象
/// </summary>
private readonly DutyPlanModule dutyPlanModule = AOP.AOPHelper.CreateAOPObject<DutyPlanModule>();
#region 用户账户管理 #region 用户账户管理
/// <summary> /// <summary>
...@@ -663,12 +669,21 @@ namespace Edu.WebApi.Controllers.User ...@@ -663,12 +669,21 @@ namespace Edu.WebApi.Controllers.User
StuStage = (StuStageEnum)base.ParmJObj.GetInt("StuStage"), StuStage = (StuStageEnum)base.ParmJObj.GetInt("StuStage"),
StartTime = base.ParmJObj.GetStringValue("StartTime"), StartTime = base.ParmJObj.GetStringValue("StartTime"),
EndTime = base.ParmJObj.GetStringValue("EndTime"), EndTime = base.ParmJObj.GetStringValue("EndTime"),
}; };
if (query.IsQueryMyStu == 1) if (query.IsQueryMyStu == 1)
{ {
query.CreateBy = base.UserInfo.Id; query.CreateBy = base.UserInfo.Id;
} }
int PlanId = base.ParmJObj.GetInt("PlanId");
if (PlanId > 0)
{
var planModel = dutyPlanModule.GetDutyPlanModule(PlanId);
string planDate = Common.ConvertHelper.FormatDate(planModel.Date);
if (!string.IsNullOrEmpty(planDate))
{
query.QDate = planDate;
}
}
query.Group_Id = base.UserInfo.Group_Id; query.Group_Id = base.UserInfo.Group_Id;
var data = studentModule.GetStudentPageListModule(pageModel.PageIndex, pageModel.PageSize, out long rowsCount, query); var data = studentModule.GetStudentPageListModule(pageModel.PageIndex, pageModel.PageSize, out long rowsCount, query);
List<object> list = new List<object>(); List<object> list = new List<object>();
...@@ -693,7 +708,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -693,7 +708,7 @@ namespace Edu.WebApi.Controllers.User
CreateTimeStr = Common.ConvertHelper.FormatTime(item.CreateTime), CreateTimeStr = Common.ConvertHelper.FormatTime(item.CreateTime),
item.CreateByName, item.CreateByName,
item.CreateType, item.CreateType,
CreateTypeStr = item.CreateType == 1 ? "员工录入" : "同业录入", CreateTypeStr = item.CreateType.ToName(),
item.StuChannel, item.StuChannel,
StuChannelName= item.StuChannel.ToName(), StuChannelName= item.StuChannel.ToName(),
item.PlatformName, item.PlatformName,
...@@ -708,6 +723,17 @@ namespace Edu.WebApi.Controllers.User ...@@ -708,6 +723,17 @@ namespace Edu.WebApi.Controllers.User
qitem.AssistType, qitem.AssistType,
AssistTypeName = qitem.AssistType.ToName() AssistTypeName = qitem.AssistType.ToName()
}), }),
item.JapanBaseInfo,
JapanBaseInfoName=item.JapanBaseInfo.ToName(),
item.StuProfession,
item.StuEducation,
StuEducationName= item.StuEducation.ToName(),
item.StuPurpose,
StuPurposeName=item.StuPurpose.ToName(),
item.VisitCount,
item.TrialLessonCount,
item.StuSourceId,
item.StuSourceIdName,
}); });
} }
pageModel.Count = rowsCount; pageModel.Count = rowsCount;
...@@ -761,10 +787,11 @@ namespace Edu.WebApi.Controllers.User ...@@ -761,10 +787,11 @@ namespace Edu.WebApi.Controllers.User
StuStage = (StuStageEnum)base.ParmJObj.GetInt("StuStage"), StuStage = (StuStageEnum)base.ParmJObj.GetInt("StuStage"),
StuChannel = (StuChannelEnum)base.ParmJObj.GetInt("StuChannel"), StuChannel = (StuChannelEnum)base.ParmJObj.GetInt("StuChannel"),
PlatformName = base.ParmJObj.GetStringValue("PlatformName"), PlatformName = base.ParmJObj.GetStringValue("PlatformName"),
StuSourceId=base.ParmJObj.GetInt("StuSourceId"),
}; };
if (extModel.StuId == 0) if (extModel.StuId == 0)
{ {
extModel.CreateType = 1; extModel.CreateType = StuCreateTypeEnum.EmployeeInput;
} }
if (string.IsNullOrEmpty(extModel.StuTel)) if (string.IsNullOrEmpty(extModel.StuTel))
{ {
...@@ -791,7 +818,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -791,7 +818,7 @@ namespace Edu.WebApi.Controllers.User
} }
bool flag = studentModule.SetStudentModule(extModel); bool flag = studentModule.SetStudentModule(extModel);
return flag ? ApiResult.Success() : ApiResult.Failed(); return flag ? ApiResult.Success(data:extModel) : ApiResult.Failed();
} }
/// <summary> /// <summary>
...@@ -869,7 +896,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -869,7 +896,7 @@ namespace Edu.WebApi.Controllers.User
StuIDCardAddress = base.ParmJObj.GetStringValue("StuIDCardAddress"), StuIDCardAddress = base.ParmJObj.GetStringValue("StuIDCardAddress"),
StuStage = (StuStageEnum)base.ParmJObj.GetInt("StuStage"), StuStage = (StuStageEnum)base.ParmJObj.GetInt("StuStage"),
}; };
extModel.CreateType = 2; extModel.CreateType = StuCreateTypeEnum.CustomerInput;
if (extModel.StuId == 0) if (extModel.StuId == 0)
{ {
extModel.StuStage = StuStageEnum.NewStu; extModel.StuStage = StuStageEnum.NewStu;
...@@ -949,6 +976,8 @@ namespace Edu.WebApi.Controllers.User ...@@ -949,6 +976,8 @@ namespace Edu.WebApi.Controllers.User
return ApiResult.Success(data: pageModel); return ApiResult.Success(data: pageModel);
} }
/// <summary> /// <summary>
/// 获取学生实体 /// 获取学生实体
/// </summary> /// </summary>
...@@ -993,7 +1022,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -993,7 +1022,7 @@ namespace Edu.WebApi.Controllers.User
newClassStatus, newClassStatus,
classStatusName, classStatusName,
extModel.CreateType, extModel.CreateType,
CreateTypeStr = extModel.CreateType == 1 ? "员工录入" : "同业录入", CreateTypeStr = extModel.CreateType.ToName(),
extModel.StuStage, extModel.StuStage,
StuStageName = extModel.StuStage.ToName(), StuStageName = extModel.StuStage.ToName(),
extModel.CreateBy, extModel.CreateBy,
...@@ -1001,10 +1030,41 @@ namespace Edu.WebApi.Controllers.User ...@@ -1001,10 +1030,41 @@ namespace Edu.WebApi.Controllers.User
StuChannelName = extModel.StuChannel.ToName(), StuChannelName = extModel.StuChannel.ToName(),
extModel.PlatformName, extModel.PlatformName,
AssistList = extModel?.AssistList ?? new List<RB_Student_Assist_Extend>(), AssistList = extModel?.AssistList ?? new List<RB_Student_Assist_Extend>(),
extModel.StuSourceId,
}; };
return ApiResult.Success(data: obj); return ApiResult.Success(data: obj);
} }
/// <summary>
/// 跟进电话号码获取学生信息
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult GetStudentByTel()
{
var StuTel = base.ParmJObj.GetStringValue("StuTel");
var extModel = studentModule.GetStuByTelModule(StuTel);
if (extModel != null && extModel.CreateBy > 0)
{
extModel.CreateByName = UserReidsCache.GetUserLoginInfo(extModel.CreateBy)?.AccountName ?? "";
}
return ApiResult.Success(data: extModel);
}
/// <summary>
/// 获取客户来源枚举列表
/// </summary>
/// <returns></returns>
[HttpPost]
public ApiResult CreateTypeList()
{
var list = Common.Plugin.EnumHelper.EnumToList(typeof(StuCreateTypeEnum));
return ApiResult.Success(data: list);
}
/// <summary> /// <summary>
/// 获取客户状态列表 /// 获取客户状态列表
/// </summary> /// </summary>
......
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