Commit 7f2c9a32 authored by 黄奎's avatar 黄奎

页面修改

parent c7aaf2a0
...@@ -33,6 +33,11 @@ namespace Edu.Model.Entity.Sell ...@@ -33,6 +33,11 @@ namespace Edu.Model.Entity.Sell
/// </summary> /// </summary>
public decimal EndNum { get; set; } public decimal EndNum { get; set; }
/// <summary>
/// 奖励金额
/// </summary>
public decimal Money { get; set; }
/// <summary> /// <summary>
/// 删除状态 /// 删除状态
/// </summary> /// </summary>
......
...@@ -75,7 +75,7 @@ namespace Edu.Model.Entity.Sell ...@@ -75,7 +75,7 @@ namespace Edu.Model.Entity.Sell
/// <summary> /// <summary>
/// 学习目的 /// 学习目的
/// </summary> /// </summary>
public GuestLearningGoalsEnum LearningGoals { get; set; } public int LearningGoals { get; set; }
/// <summary> /// <summary>
/// 联系人 /// 联系人
......
...@@ -135,7 +135,7 @@ namespace Edu.Model.Entity.User ...@@ -135,7 +135,7 @@ namespace Edu.Model.Entity.User
/// <summary> /// <summary>
/// 学习目的 /// 学习目的
/// </summary> /// </summary>
public GuestLearningGoalsEnum StuPurpose { get; set; } public int StuPurpose { get; set; }
/// <summary> /// <summary>
/// 客人来源 /// 客人来源
...@@ -185,7 +185,7 @@ namespace Edu.Model.Entity.User ...@@ -185,7 +185,7 @@ namespace Edu.Model.Entity.User
/// <summary> /// <summary>
/// 收客渠道 /// 收客渠道
/// </summary> /// </summary>
public StuChannelEnum StuChannel { get; set; } public int StuChannel { get; set; }
/// <summary> /// <summary>
/// 第三方平台名称 /// 第三方平台名称
......
...@@ -268,5 +268,10 @@ namespace Edu.Model.ViewModel.Sell ...@@ -268,5 +268,10 @@ namespace Edu.Model.ViewModel.Sell
/// 学员业务单据列表 /// 学员业务单据列表
/// </summary> /// </summary>
public List<RB_Education_Receipt_ViewModel> GuestEduReceiptList { get; set; } public List<RB_Education_Receipt_ViewModel> GuestEduReceiptList { get; set; }
/// <summary>
/// 学习目的
/// </summary>
public string LearningGoalsName { get; set; }
} }
} }
\ No newline at end of file
...@@ -10,5 +10,9 @@ namespace Edu.Model.ViewModel.System ...@@ -10,5 +10,9 @@ namespace Edu.Model.ViewModel.System
/// </summary> /// </summary>
public class RB_Channel_Extend : RB_Channel public class RB_Channel_Extend : RB_Channel
{ {
/// <summary>
/// 渠道编号【查询使用】
/// </summary>
public string QChannelIds { get; set;}
} }
} }
...@@ -10,5 +10,9 @@ namespace Edu.Model.ViewModel.System ...@@ -10,5 +10,9 @@ namespace Edu.Model.ViewModel.System
/// </summary> /// </summary>
public class RB_LearningGoals_Extend : RB_LearningGoals public class RB_LearningGoals_Extend : RB_LearningGoals
{ {
/// <summary>
/// 学习目的编号【查询使用】
/// </summary>
public string QGoalIds { get; set; }
} }
} }
...@@ -239,5 +239,15 @@ namespace Edu.Model.ViewModel.User ...@@ -239,5 +239,15 @@ namespace Edu.Model.ViewModel.User
/// 操作类型(1-ERP后台操作,2-App小程序操作) /// 操作类型(1-ERP后台操作,2-App小程序操作)
/// </summary> /// </summary>
public int OperateType { get; set; } public int OperateType { get; set; }
/// <summary>
/// 渠道名称
/// </summary>
public string StuChannelName { get; set; }
/// <summary>
/// 学习目的名称
/// </summary>
public string StuPurposeName { get; set;}
} }
} }
\ No newline at end of file
...@@ -32,6 +32,7 @@ using Edu.Repository.Log; ...@@ -32,6 +32,7 @@ using Edu.Repository.Log;
using Edu.Repository.Reserve; using Edu.Repository.Reserve;
using Edu.Repository.Sell; using Edu.Repository.Sell;
using Edu.Repository.StudyAbroad; using Edu.Repository.StudyAbroad;
using Edu.Repository.System;
using Edu.Repository.User; using Edu.Repository.User;
using Newtonsoft.Json.Linq; using Newtonsoft.Json.Linq;
using System; using System;
...@@ -215,6 +216,11 @@ namespace Edu.Module.Course ...@@ -215,6 +216,11 @@ namespace Edu.Module.Course
/// </summary> /// </summary>
private readonly RB_Finance_ConfigRepository finance_ConfigRepository = new RB_Finance_ConfigRepository(); private readonly RB_Finance_ConfigRepository finance_ConfigRepository = new RB_Finance_ConfigRepository();
/// <summary>
/// 学习目的仓储层对象
/// </summary>
private readonly RB_LearningGoalsRepository learningGoalsRepository = new RB_LearningGoalsRepository();
#region 日语培训 #region 日语培训
/// <summary> /// <summary>
...@@ -960,7 +966,7 @@ namespace Edu.Module.Course ...@@ -960,7 +966,7 @@ namespace Edu.Module.Course
Basics = visitorModel?.LevelType, Basics = visitorModel?.LevelType,
Education = GuestEducationEnum.N2, Education = GuestEducationEnum.N2,
GuestSource = demodel.OrderSource, GuestSource = demodel.OrderSource,
LearningGoals = GuestLearningGoalsEnum.Love, LearningGoals =0,
Contact = "", Contact = "",
ContactMobile = "", ContactMobile = "",
Status = 0, Status = 0,
...@@ -1008,7 +1014,7 @@ namespace Edu.Module.Course ...@@ -1008,7 +1014,7 @@ namespace Edu.Module.Course
Basics = oldGuestModel?.Basics, Basics = oldGuestModel?.Basics,
Education = oldGuestModel?.Education ?? GuestEducationEnum.N2, Education = oldGuestModel?.Education ?? GuestEducationEnum.N2,
GuestSource = demodel.OrderSource, GuestSource = demodel.OrderSource,
LearningGoals = oldGuestModel?.LearningGoals ?? GuestLearningGoalsEnum.Love, LearningGoals = oldGuestModel?.LearningGoals ?? 0,
Contact = oldGuestModel?.Contact ?? "", Contact = oldGuestModel?.Contact ?? "",
ContactMobile = oldGuestModel?.ContactMobile ?? "", ContactMobile = oldGuestModel?.ContactMobile ?? "",
Status = 0, Status = 0,
...@@ -1070,7 +1076,7 @@ namespace Edu.Module.Course ...@@ -1070,7 +1076,7 @@ namespace Edu.Module.Course
Basics = "", Basics = "",
Education = item?.StuEducation ?? GuestEducationEnum.N2, Education = item?.StuEducation ?? GuestEducationEnum.N2,
GuestSource = demodel.OrderSource, GuestSource = demodel.OrderSource,
LearningGoals = item?.StuPurpose ?? GuestLearningGoalsEnum.Love, LearningGoals = item?.StuPurpose ?? 0,
Contact = item?.StuContract ?? "", Contact = item?.StuContract ?? "",
ContactMobile = item?.StuContractMobile ?? "", ContactMobile = item?.StuContractMobile ?? "",
Status = 0, Status = 0,
...@@ -2170,6 +2176,12 @@ namespace Edu.Module.Course ...@@ -2170,6 +2176,12 @@ namespace Edu.Module.Course
if (list != null && list.Count > 0) if (list != null && list.Count > 0)
{ {
string guestIds = string.Join(",", list.Select(qitem => qitem.Id)); string guestIds = string.Join(",", list.Select(qitem => qitem.Id));
string goalIds = string.Join(",", list.Select(qitem => qitem.LearningGoals));
var goalList= learningGoalsRepository.GetLearningGoalsListRepository(new Model.ViewModel.System.RB_LearningGoals_Extend()
{
QGoalIds=goalIds
});
//查询学员[停课,退课,转班,分拆,临课]业务单据 //查询学员[停课,退课,转班,分拆,临课]业务单据
var guestEduReceiptList = education_ReceiptRepository.GetEducationReceiptListExtRepository(new EducationReceiptQuery() var guestEduReceiptList = education_ReceiptRepository.GetEducationReceiptListExtRepository(new EducationReceiptQuery()
{ {
...@@ -2209,6 +2221,7 @@ namespace Edu.Module.Course ...@@ -2209,6 +2221,7 @@ namespace Edu.Module.Course
{ {
item.TargetClassName = sourceTargetList?.Where(qitem => qitem.OrderId == item.TargetOrderId)?.FirstOrDefault()?.ClassName; item.TargetClassName = sourceTargetList?.Where(qitem => qitem.OrderId == item.TargetOrderId)?.FirstOrDefault()?.ClassName;
} }
item.LearningGoalsName = goalList?.FirstOrDefault(qitem => qitem.Id == item.LearningGoals)?.Name ?? "";
} }
} }
return list; return list;
...@@ -2287,7 +2300,9 @@ namespace Edu.Module.Course ...@@ -2287,7 +2300,9 @@ namespace Edu.Module.Course
if (gModel.LearningGoals != dmodel.LearningGoals) if (gModel.LearningGoals != dmodel.LearningGoals)
{ {
LogContent += ",学习目的由【" + gModel.LearningGoals.ToName() + "】修改为【" + dmodel.LearningGoals.ToName() + "】"; string oldName = learningGoalsRepository.GetLearningGoalsExtEntityRepository(gModel.LearningGoals)?.Name ?? "";
string newName= learningGoalsRepository.GetLearningGoalsExtEntityRepository(dmodel.LearningGoals)?.Name ?? "";
LogContent += ",学习目的由【" + oldName + "】修改为【" + newName + "】";
} }
gModel.LearningGoals = dmodel.LearningGoals; gModel.LearningGoals = dmodel.LearningGoals;
......
...@@ -396,7 +396,7 @@ namespace Edu.Module.Course ...@@ -396,7 +396,7 @@ namespace Edu.Module.Course
Basics = "", Basics = "",
Education = item?.StuEducation ?? GuestEducationEnum.N2, Education = item?.StuEducation ?? GuestEducationEnum.N2,
GuestSource = orderModel.OrderSource, GuestSource = orderModel.OrderSource,
LearningGoals = item?.StuPurpose ?? GuestLearningGoalsEnum.Love, LearningGoals = item?.StuPurpose ?? 0,
Contact = item?.StuContract ?? "", Contact = item?.StuContract ?? "",
ContactMobile = item?.StuContractMobile ?? "", ContactMobile = item?.StuContractMobile ?? "",
Status = 0, Status = 0,
......
...@@ -1681,7 +1681,7 @@ namespace Edu.Module.Duty ...@@ -1681,7 +1681,7 @@ namespace Edu.Module.Duty
StuTel = item.Tel, StuTel = item.Tel,
StuIcon ="", StuIcon ="",
StuSex = 0, StuSex = 0,
StuChannel = StuChannelEnum.PassBy StuChannel = 0
}; };
if (extModel.StuId == 0) if (extModel.StuId == 0)
{ {
......
...@@ -86,6 +86,16 @@ namespace Edu.Module.User ...@@ -86,6 +86,16 @@ namespace Edu.Module.User
/// </summary> /// </summary>
private readonly RB_Student_TypeRepository student_TypeRepository = new RB_Student_TypeRepository(); private readonly RB_Student_TypeRepository student_TypeRepository = new RB_Student_TypeRepository();
/// <summary>
/// 学习目的仓储层对象
/// </summary>
private readonly RB_LearningGoalsRepository learningGoalsRepository = new RB_LearningGoalsRepository();
/// <summary>
/// 渠道仓储层对象
/// </summary>
private readonly RB_ChannelRepository channelRepository = new RB_ChannelRepository();
/// <summary> /// <summary>
/// 获取学生列表 /// 获取学生列表
/// </summary> /// </summary>
...@@ -206,6 +216,20 @@ namespace Edu.Module.User ...@@ -206,6 +216,20 @@ namespace Edu.Module.User
StuIds = string.Join(",", transIdList) StuIds = string.Join(",", transIdList)
}); });
} }
//学习目的
string goalIds = string.Join(",", list.Select(qitem => qitem.StuPurpose));
var goalList = learningGoalsRepository.GetLearningGoalsListRepository(new Model.ViewModel.System.RB_LearningGoals_Extend()
{
QGoalIds=goalIds
});
string channelIds = string.Join(",", list.Select(qitem => qitem.StuChannel));
var channelList = channelRepository.GetChannelListRepository(new Model.ViewModel.System.RB_Channel_Extend()
{
QChannelIds=channelIds
});
foreach (var item in list) foreach (var item in list)
{ {
var tempOrderList = stuOrderList?.Where(qitem => qitem.Student_Id == item.StuId)?.ToList(); var tempOrderList = stuOrderList?.Where(qitem => qitem.Student_Id == item.StuId)?.ToList();
...@@ -242,6 +266,9 @@ namespace Edu.Module.User ...@@ -242,6 +266,9 @@ namespace Edu.Module.User
} }
item.StuStageName = stageList?.FirstOrDefault(qitem => qitem.Id == item.StuStage)?.StageName ?? ""; item.StuStageName = stageList?.FirstOrDefault(qitem => qitem.Id == item.StuStage)?.StageName ?? "";
item.StuTypeName = stuTypeList?.FirstOrDefault(qitem => qitem.Id == item.StuType)?.Name ?? ""; item.StuTypeName = stuTypeList?.FirstOrDefault(qitem => qitem.Id == item.StuType)?.Name ?? "";
item.StuChannelName = channelList?.FirstOrDefault(qitem => qitem.Id == item.StuChannel)?.Name ?? "";
item.StuPurposeName = goalList?.FirstOrDefault(qitem => qitem.Id == item.StuPurpose)?.Name ?? "";
} }
} }
return list; return list;
...@@ -381,6 +408,8 @@ namespace Edu.Module.User ...@@ -381,6 +408,8 @@ namespace Edu.Module.User
extModel.AssistList = assistList; extModel.AssistList = assistList;
extModel.StuStageName = stageRepository.GetEntity(extModel.StuStage)?.StageName ?? ""; extModel.StuStageName = stageRepository.GetEntity(extModel.StuStage)?.StageName ?? "";
extModel.StuTypeName = student_TypeRepository.GetEntity(extModel.StuType)?.Name ?? ""; extModel.StuTypeName = student_TypeRepository.GetEntity(extModel.StuType)?.Name ?? "";
extModel.StuPurposeName = learningGoalsRepository.GetLearningGoalsExtEntityRepository(extModel.StuPurpose)?.Name ?? "";
extModel.StuChannelName = channelRepository.GetChannelExtEntityRepository(extModel.StuChannel)?.Name ?? "";
} }
return extModel; return extModel;
} }
......
...@@ -74,6 +74,10 @@ WHERE 1=1 ...@@ -74,6 +74,10 @@ WHERE 1=1
builder.AppendFormat(" AND A.{0} LIKE @Name ", nameof(RB_Channel_Extend.Name)); builder.AppendFormat(" AND A.{0} LIKE @Name ", nameof(RB_Channel_Extend.Name));
parameters.Add("Name", "%" + query.Name.Trim() + "%"); parameters.Add("Name", "%" + query.Name.Trim() + "%");
} }
if (!string.IsNullOrEmpty(query.QChannelIds))
{
builder.AppendFormat(@" AND A.{0} IN({1}) ", nameof(RB_Channel_Extend.Id), query.QChannelIds);
}
} }
return Get<RB_Channel_Extend>(builder.ToString(), parameters).ToList(); return Get<RB_Channel_Extend>(builder.ToString(), parameters).ToList();
} }
......
...@@ -74,6 +74,10 @@ WHERE 1=1 ...@@ -74,6 +74,10 @@ WHERE 1=1
builder.AppendFormat(" AND A.{0} LIKE @Name ", nameof(RB_LearningGoals_Extend.Name)); builder.AppendFormat(" AND A.{0} LIKE @Name ", nameof(RB_LearningGoals_Extend.Name));
parameters.Add("Name", "%" + query.Name.Trim() + "%"); parameters.Add("Name", "%" + query.Name.Trim() + "%");
} }
if (!string.IsNullOrEmpty(query.QGoalIds))
{
builder.AppendFormat(@" AND A.{0} IN({1}) ", nameof(RB_LearningGoals_Extend.Id), query.QGoalIds);
}
} }
return Get<RB_LearningGoals_Extend>(builder.ToString(), parameters).ToList(); return Get<RB_LearningGoals_Extend>(builder.ToString(), parameters).ToList();
} }
......
using Edu.Model.Entity.System; using Edu.Model.Entity.System;
using Edu.Model.ViewModel.System; using Edu.Model.ViewModel.System;
using Edu.Common.Enum; using Edu.Common.Enum;
using Edu.Model.Entity.System;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
......
...@@ -48,6 +48,16 @@ namespace Edu.Repository.User ...@@ -48,6 +48,16 @@ namespace Edu.Repository.User
/// </summary> /// </summary>
private readonly RB_Student_TypeRepository student_TypeRepository = new RB_Student_TypeRepository(); private readonly RB_Student_TypeRepository student_TypeRepository = new RB_Student_TypeRepository();
/// <summary>
/// 收客渠道仓储层对象
/// </summary>
private readonly RB_ChannelRepository channelRepository = new RB_ChannelRepository();
/// <summary>
/// 学习目的仓储层对象
/// </summary>
private readonly RB_LearningGoalsRepository learningGoalsRepository = new RB_LearningGoalsRepository();
/// <summary> /// <summary>
/// 获取学生列表 /// 获取学生列表
/// </summary> /// </summary>
...@@ -345,7 +355,9 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an ...@@ -345,7 +355,9 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an
} }
if (oldModel.StuPurpose != model.StuPurpose) if (oldModel.StuPurpose != model.StuPurpose)
{ {
logContent += string.Format("学习目的:由【{0}】=>【{1}】,", oldModel.StuPurpose.ToName(), model.StuPurpose.ToName()); string oldName = learningGoalsRepository.GetLearningGoalsExtEntityRepository(oldModel.StuPurpose)?.Name??"" ;
string newName = learningGoalsRepository.GetLearningGoalsExtEntityRepository(model.StuPurpose)?.Name ?? "";
logContent += string.Format("学习目的:由【{0}】=>【{1}】,", oldName, newName);
} }
if (oldModel.StuProfession != model.StuProfession) if (oldModel.StuProfession != model.StuProfession)
{ {
...@@ -363,7 +375,9 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an ...@@ -363,7 +375,9 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an
} }
if (oldModel.StuChannel != model.StuChannel) if (oldModel.StuChannel != model.StuChannel)
{ {
logContent += string.Format("收客渠道:由【{0}】=>【{1}】,", oldModel.StuChannel.ToName(), model.StuChannel.ToName()); string oldName = channelRepository.GetChannelExtEntityRepository(oldModel.StuChannel)?.Name ?? "";
string newName= channelRepository.GetChannelExtEntityRepository(model.StuChannel)?.Name ?? "";
logContent += string.Format("收客渠道:由【{0}】=>【{1}】,", oldName, newName);
} }
if (oldModel.PlatformName != model.PlatformName) if (oldModel.PlatformName != model.PlatformName)
{ {
......
...@@ -7,6 +7,7 @@ using Edu.WebApi.Filter; ...@@ -7,6 +7,7 @@ using Edu.WebApi.Filter;
using Microsoft.AspNetCore.Cors; using Microsoft.AspNetCore.Cors;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json.Linq;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
...@@ -35,7 +36,7 @@ namespace Edu.WebApi.Controllers.Bonus ...@@ -35,7 +36,7 @@ namespace Edu.WebApi.Controllers.Bonus
var pageModel = Common.Plugin.JsonHelper.DeserializeObject<ResultPageModel>(RequestParm.Msg.ToString()); var pageModel = Common.Plugin.JsonHelper.DeserializeObject<ResultPageModel>(RequestParm.Msg.ToString());
var query = new RB_Bonus_PlanExtend() var query = new RB_Bonus_PlanExtend()
{ {
PlanName=base.ParmJObj.GetStringValue("PlanName"), PlanName = base.ParmJObj.GetStringValue("PlanName"),
}; };
query.Group_Id = base.UserInfo.Group_Id; query.Group_Id = base.UserInfo.Group_Id;
List<object> result = new List<object>(); List<object> result = new List<object>();
...@@ -72,15 +73,15 @@ namespace Edu.WebApi.Controllers.Bonus ...@@ -72,15 +73,15 @@ namespace Edu.WebApi.Controllers.Bonus
{ {
var query = new RB_Bonus_PlanExtend() var query = new RB_Bonus_PlanExtend()
{ {
Id=base.ParmJObj.GetInt("Id"), Id = base.ParmJObj.GetInt("Id"),
PlanName = base.ParmJObj.GetStringValue("PlanName"), PlanName = base.ParmJObj.GetStringValue("PlanName"),
BasicSalary=base.ParmJObj.GetDecimal("BasicSalary"), BasicSalary = base.ParmJObj.GetDecimal("BasicSalary"),
OpenBonus=base.ParmJObj.GetDecimal("OpenBonus"), OpenBonus = base.ParmJObj.GetDecimal("OpenBonus"),
WorkAgeSalary=base.ParmJObj.GetDecimal("WorkAgeSalary"), WorkAgeSalary = base.ParmJObj.GetDecimal("WorkAgeSalary"),
ClueNumSalary=base.ParmJObj.GetDecimal("ClueNumSalary"), ClueNumSalary = base.ParmJObj.GetDecimal("ClueNumSalary"),
SaleIds=base.ParmJObj.GetStringValue("SaleIds"), SaleIds = base.ParmJObj.GetStringValue("SaleIds"),
UseCourseIds=base.ParmJObj.GetStringValue("UseCourseIds"), UseCourseIds = base.ParmJObj.GetStringValue("UseCourseIds"),
NotUseCourseIds=base.ParmJObj.GetStringValue("NotUseCourseIds"), NotUseCourseIds = base.ParmJObj.GetStringValue("NotUseCourseIds"),
}; };
query.CreateBy = base.UserInfo.Id; query.CreateBy = base.UserInfo.Id;
query.UpdateBy = base.UserInfo.Id; query.UpdateBy = base.UserInfo.Id;
...@@ -88,6 +89,27 @@ namespace Edu.WebApi.Controllers.Bonus ...@@ -88,6 +89,27 @@ namespace Edu.WebApi.Controllers.Bonus
query.UpdateTime = DateTime.Now; query.UpdateTime = DateTime.Now;
query.Group_Id = base.UserInfo.Group_Id; query.Group_Id = base.UserInfo.Group_Id;
query.Status = Common.Enum.DateStateEnum.Normal; query.Status = Common.Enum.DateStateEnum.Normal;
query.DetailList = new List<RB_Bouns_PlanDetail_Extend>();
string detailList = base.ParmJObj.GetStringValue("DetailList");
if (!string.IsNullOrEmpty(detailList))
{
JArray jarray = JArray.Parse(detailList);
if (jarray != null && jarray.Count > 0)
{
foreach (var jItem in jarray)
{
JObject jobj = JObject.Parse(jItem.ToString());
query.DetailList.Add(new RB_Bouns_PlanDetail_Extend()
{
DetailId = jobj.GetInt("DetailId"),
PlanId = jobj.GetInt("PlanId"),
StartNum = jobj.GetDecimal("StartNum"),
EndNum = jobj.GetDecimal("EndNum"),
Money = jobj.GetDecimal("Money"),
});
}
}
}
bool flag = bonusConfigModule.SetBonusPlanModule(query); bool flag = bonusConfigModule.SetBonusPlanModule(query);
return flag ? ApiResult.Success() : ApiResult.Failed(); return flag ? ApiResult.Success() : ApiResult.Failed();
} }
......
...@@ -1119,7 +1119,7 @@ namespace Edu.WebApi.Controllers.Course ...@@ -1119,7 +1119,7 @@ namespace Edu.WebApi.Controllers.Course
x.GuestSource, x.GuestSource,
GuestSourceName = x.GuestSource.ToName(), GuestSourceName = x.GuestSource.ToName(),
x.LearningGoals, x.LearningGoals,
LearningGoalsName = x.LearningGoals.ToName(), x.LearningGoalsName,
x.Contact, x.Contact,
x.ContactMobile, x.ContactMobile,
x.IDCard, x.IDCard,
...@@ -1189,7 +1189,7 @@ namespace Edu.WebApi.Controllers.Course ...@@ -1189,7 +1189,7 @@ namespace Edu.WebApi.Controllers.Course
Basics = base.ParmJObj.GetStringValue("Basics"), Basics = base.ParmJObj.GetStringValue("Basics"),
Education = (GuestEducationEnum)base.ParmJObj.GetInt("Education"), Education = (GuestEducationEnum)base.ParmJObj.GetInt("Education"),
GuestSource = (OrderSourceEnum)base.ParmJObj.GetInt("GuestSource"), GuestSource = (OrderSourceEnum)base.ParmJObj.GetInt("GuestSource"),
LearningGoals = (GuestLearningGoalsEnum)base.ParmJObj.GetInt("LearningGoals"), LearningGoals = base.ParmJObj.GetInt("LearningGoals"),
Contact = base.ParmJObj.GetStringValue("Contact"), Contact = base.ParmJObj.GetStringValue("Contact"),
ContactMobile = base.ParmJObj.GetStringValue("ContactMobile"), ContactMobile = base.ParmJObj.GetStringValue("ContactMobile"),
IDCard = base.ParmJObj.GetStringValue("IDCard"), IDCard = base.ParmJObj.GetStringValue("IDCard"),
......
...@@ -533,7 +533,9 @@ namespace Edu.WebApi.Controllers.Customer ...@@ -533,7 +533,9 @@ namespace Edu.WebApi.Controllers.Customer
x.ApproveStateStr, x.ApproveStateStr,
x.CreateBy, x.CreateBy,
x.CreateByName, x.CreateByName,
x.CreateTimeStr x.CreateTimeStr,
x.QQ,
x.WeChatNo,
}); });
pageModel.Count = rowsCount; pageModel.Count = rowsCount;
return ApiResult.Success(data: pageModel); return ApiResult.Success(data: pageModel);
......
...@@ -724,7 +724,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -724,7 +724,7 @@ namespace Edu.WebApi.Controllers.User
item.CreateType, item.CreateType,
CreateTypeStr = item.CreateType.ToName(), CreateTypeStr = item.CreateType.ToName(),
item.StuChannel, item.StuChannel,
StuChannelName = item.StuChannel.ToName(), item.StuChannelName,
item.PlatformName, item.PlatformName,
item.CustomerId, item.CustomerId,
item.CustomerName, item.CustomerName,
...@@ -743,7 +743,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -743,7 +743,7 @@ namespace Edu.WebApi.Controllers.User
item.StuEducation, item.StuEducation,
StuEducationName = item.StuEducation.ToName(), StuEducationName = item.StuEducation.ToName(),
item.StuPurpose, item.StuPurpose,
StuPurposeName = item.StuPurpose.ToName(), item.StuPurposeName,
item.VisitCount, item.VisitCount,
item.TrialLessonCount, item.TrialLessonCount,
item.StuSourceId, item.StuSourceId,
...@@ -810,7 +810,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -810,7 +810,7 @@ namespace Edu.WebApi.Controllers.User
JapanBaseInfo = (GuestBasicsEnum)base.ParmJObj.GetInt("JapanBaseInfo"), JapanBaseInfo = (GuestBasicsEnum)base.ParmJObj.GetInt("JapanBaseInfo"),
StuProfession = base.ParmJObj.GetStringValue("StuProfession"), StuProfession = base.ParmJObj.GetStringValue("StuProfession"),
StuEducation = (GuestEducationEnum)base.ParmJObj.GetInt("StuEducation"), StuEducation = (GuestEducationEnum)base.ParmJObj.GetInt("StuEducation"),
StuPurpose = (GuestLearningGoalsEnum)base.ParmJObj.GetInt("StuPurpose"), StuPurpose = base.ParmJObj.GetInt("StuPurpose"),
StuSource = (OrderSourceEnum)base.ParmJObj.GetInt("StuSource"), StuSource = (OrderSourceEnum)base.ParmJObj.GetInt("StuSource"),
StuAddress = base.ParmJObj.GetStringValue("StuAddress"), StuAddress = base.ParmJObj.GetStringValue("StuAddress"),
StuContract = base.ParmJObj.GetStringValue("StuContract"), StuContract = base.ParmJObj.GetStringValue("StuContract"),
...@@ -818,7 +818,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -818,7 +818,7 @@ namespace Edu.WebApi.Controllers.User
StuIDCard = base.ParmJObj.GetStringValue("StuIDCard"), StuIDCard = base.ParmJObj.GetStringValue("StuIDCard"),
StuIDCardAddress = base.ParmJObj.GetStringValue("StuIDCardAddress"), StuIDCardAddress = base.ParmJObj.GetStringValue("StuIDCardAddress"),
StuStage = base.ParmJObj.GetInt("StuStage"), StuStage = base.ParmJObj.GetInt("StuStage"),
StuChannel = (StuChannelEnum)base.ParmJObj.GetInt("StuChannel"), StuChannel = base.ParmJObj.GetInt("StuChannel"),
PlatformName = base.ParmJObj.GetStringValue("PlatformName"), PlatformName = base.ParmJObj.GetStringValue("PlatformName"),
CreateType = (StuCreateTypeEnum)base.ParmJObj.GetInt("CreateType"), CreateType = (StuCreateTypeEnum)base.ParmJObj.GetInt("CreateType"),
StuSourceId = base.ParmJObj.GetInt("StuSourceId"), StuSourceId = base.ParmJObj.GetInt("StuSourceId"),
...@@ -1043,7 +1043,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -1043,7 +1043,7 @@ namespace Edu.WebApi.Controllers.User
JapanBaseInfo = (GuestBasicsEnum)base.ParmJObj.GetInt("JapanBaseInfo"), JapanBaseInfo = (GuestBasicsEnum)base.ParmJObj.GetInt("JapanBaseInfo"),
StuProfession = base.ParmJObj.GetStringValue("StuProfession"), StuProfession = base.ParmJObj.GetStringValue("StuProfession"),
StuEducation = (GuestEducationEnum)base.ParmJObj.GetInt("StuEducation"), StuEducation = (GuestEducationEnum)base.ParmJObj.GetInt("StuEducation"),
StuPurpose = (GuestLearningGoalsEnum)base.ParmJObj.GetInt("StuPurpose"), StuPurpose = base.ParmJObj.GetInt("StuPurpose"),
StuSource = (OrderSourceEnum)base.ParmJObj.GetInt("StuSource"), StuSource = (OrderSourceEnum)base.ParmJObj.GetInt("StuSource"),
StuAddress = base.ParmJObj.GetStringValue("StuAddress"), StuAddress = base.ParmJObj.GetStringValue("StuAddress"),
StuContract = base.ParmJObj.GetStringValue("StuContract"), StuContract = base.ParmJObj.GetStringValue("StuContract"),
...@@ -1176,7 +1176,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -1176,7 +1176,7 @@ namespace Edu.WebApi.Controllers.User
extModel.StuEducation, extModel.StuEducation,
StuEducationName = extModel.StuEducation.ToName(), StuEducationName = extModel.StuEducation.ToName(),
extModel.StuPurpose, extModel.StuPurpose,
StuPurposeName = extModel.StuPurpose.ToName(), extModel.StuPurposeName,
extModel.StuSource, extModel.StuSource,
StuSourceName = extModel.StuSource.ToName(), StuSourceName = extModel.StuSource.ToName(),
extModel.StuAddress, extModel.StuAddress,
...@@ -1193,7 +1193,7 @@ namespace Edu.WebApi.Controllers.User ...@@ -1193,7 +1193,7 @@ namespace Edu.WebApi.Controllers.User
extModel.StuStageName, extModel.StuStageName,
extModel.CreateBy, extModel.CreateBy,
extModel.StuChannel, extModel.StuChannel,
StuChannelName = extModel.StuChannel.ToName(), extModel.StuChannelName,
extModel.PlatformName, extModel.PlatformName,
AssistList = extModel?.AssistList ?? new List<RB_Student_Assist_Extend>(), AssistList = extModel?.AssistList ?? new List<RB_Student_Assist_Extend>(),
extModel.StuSourceId, extModel.StuSourceId,
......
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