20230316新增人员出入记录操作日志
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using BLL;
|
||||
using Model;
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
@@ -114,7 +115,17 @@ namespace FineUIPro.Web.ProjectData
|
||||
{
|
||||
newProjectUser.WorkAreaId = string.Join(",", txtUnitWork.Values);
|
||||
}
|
||||
BLL.SitePerson_PersonService.UpdateSitePerson(newProjectUser);
|
||||
|
||||
Model.Sys_Log newlog = new Sys_Log
|
||||
{
|
||||
UserId = this.CurrUser.PersonId,
|
||||
MenuId = Const.PersonListMenuId,
|
||||
OperationName = "项目用户",
|
||||
OperationLog = "项目用户修改" + newProjectUser.PersonName,
|
||||
DataId = newProjectUser.PersonId,
|
||||
ProjectId = newProjectUser.ProjectId,
|
||||
};
|
||||
BLL.SitePerson_PersonService.UpdateSitePerson(newProjectUser, newlog);
|
||||
|
||||
///离岗 -todo
|
||||
Model.Sys_RoleItem roleItem = BLL.RoleItemService.GeRoleItemByUserIdAndProjectId(newProjectUser.PersonId, newProjectUser.ProjectId);
|
||||
|
||||
Reference in New Issue
Block a user