Commit 28399333 authored by 黄奎's avatar 黄奎

页面修改

parent c2b8a9d2
...@@ -211,5 +211,10 @@ namespace Edu.Model.Entity.User ...@@ -211,5 +211,10 @@ namespace Edu.Model.Entity.User
/// 客户需求 /// 客户需求
/// </summary> /// </summary>
public int StuNeeds { get; set; } public int StuNeeds { get; set; }
/// <summary>
/// 学员真实电话号码
/// </summary>
public string StuRealMobile { get; set; }
} }
} }
...@@ -771,5 +771,18 @@ namespace Edu.Module.User ...@@ -771,5 +771,18 @@ namespace Edu.Module.User
} }
#endregion #endregion
public void UpdateTel()
{
var list= studentRepository.GetStudentListRepository(new RB_Student_ViewModel());
foreach (var item in list)
{
Dictionary<string, object> fileds = new Dictionary<string, object>()
{
{nameof(RB_Student_ViewModel.StuTel),Common.Plugin.StringHelper.ReplaceMobile(item.StuTel) }
};
studentRepository.Update(fileds, new WhereHelper(nameof(RB_Student_ViewModel.StuId), item.StuId));
}
}
} }
} }
...@@ -814,7 +814,7 @@ FROM RB_Order_Guest AS A ...@@ -814,7 +814,7 @@ FROM RB_Order_Guest AS A
) AS gc on gc.OrderGuestId=a.Id ) AS gc on gc.OrderGuestId=a.Id
where A.Id ={guestId} where A.Id ={guestId}
"; ";
return Get<RB_Order_Guest_ViewModel>(sql).FirstOrDefault(); return Get<RB_Order_Guest_Extend>(sql).FirstOrDefault();
} }
} }
......
...@@ -547,11 +547,24 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an ...@@ -547,11 +547,24 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an
var accountModel= accountRepository.GetAccountListRepository(new RB_Account_ViewModel() { Group_Id = model.Group_Id, AccountType = Common.Enum.User.AccountTypeEnum.Student, AccountId = model.StuId }).FirstOrDefault(); var accountModel= accountRepository.GetAccountListRepository(new RB_Account_ViewModel() { Group_Id = model.Group_Id, AccountType = Common.Enum.User.AccountTypeEnum.Student, AccountId = model.StuId }).FirstOrDefault();
if (accountModel == null) if (accountModel == null)
{ {
string account = "";
if (!string.IsNullOrEmpty(model.WeChatNo))
{
account = model.WeChatNo;
}
if (!string.IsNullOrEmpty(model.QQ))
{
account = model.QQ;
}
if (!string.IsNullOrEmpty(model.StuTel))
{
account = model.StuTel;
}
//创建学生账号 //创建学生账号
model.Account_Id = accountRepository.Insert(new RB_Account() model.Account_Id = accountRepository.Insert(new RB_Account()
{ {
Id = 0, Id = 0,
Account = model.StuTel, Account = account,
AccountId = model.StuId, AccountId = model.StuId,
AccountType = Common.Enum.User.AccountTypeEnum.Student, AccountType = Common.Enum.User.AccountTypeEnum.Student,
AnnualLeaveDay = 0, AnnualLeaveDay = 0,
......
...@@ -53,11 +53,14 @@ namespace Edu.WebApi.Controllers.User ...@@ -53,11 +53,14 @@ namespace Edu.WebApi.Controllers.User
private readonly EmployeeBonusModule employeeBonusModule = new EmployeeBonusModule(); private readonly EmployeeBonusModule employeeBonusModule = new EmployeeBonusModule();
private readonly StudentModule studentModule = new StudentModule();
[HttpGet] [HttpGet]
[HttpPost] [HttpPost]
[AllowAnonymous] [AllowAnonymous]
public ApiResult Test() public ApiResult Test()
{ {
studentModule.UpdateTel();
return ApiResult.Success(); return ApiResult.Success();
} }
......
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