Commit 3bb2d76c authored by 黄奎's avatar 黄奎

页面修改

parent 246aa61a
...@@ -498,7 +498,7 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an ...@@ -498,7 +498,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: (int)model.CreateType); student_LogRepository.AddStuLogRepository(model.StuId, Common.Enum.Log.StudentLogTypeEnum.BasicInfo, logTitle, logContent, createBy, CreateType: model.OperateType);
return flag; return flag;
} }
......
...@@ -343,7 +343,15 @@ namespace Edu.WebApi.Controllers.Customer ...@@ -343,7 +343,15 @@ namespace Edu.WebApi.Controllers.Customer
foreach (var item in data) foreach (var item in data)
{ {
string CreateByName = ""; string CreateByName = "";
CreateByName = UserReidsCache.GetUserLoginInfo(item.CreateBy)?.AccountName ?? ""; if (item.CreateBy == 1)
{
CreateByName = UserReidsCache.GetUserLoginInfo(item.CreateBy)?.AccountName ?? "";
}
else
{
CreateByName = UserReidsCache.GetAppletCustomerLoginInfo(item.CreateBy)?.CustomerName ?? "";
}
list.Add(new list.Add(new
{ {
item.LogId, item.LogId,
......
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