This commit is contained in:
parent
cc86d5a07e
commit
2569d4d5fa
|
@ -88,7 +88,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
|||
this.UnitId = Request.Params["UnitId"];
|
||||
this.PersonId = Request.Params["PersonId"];
|
||||
this.InitDropDownList();
|
||||
this.drpIdcardType.SelectedValue = "SHENFEN_ZHENGJIAN";
|
||||
this.drpIdcardType.SelectedValue = "SHENFEN_ZHENGJIAN";
|
||||
|
||||
if (!string.IsNullOrEmpty(this.PersonId))
|
||||
{
|
||||
|
@ -285,7 +285,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
|||
BasicDataService.InitBasicDataProjectUnitDropDownList(this.drpPoliticsStatus, "POLITICAL_LANDSCAPE", true);
|
||||
BasicDataService.InitBasicDataProjectUnitDropDownList(this.drpNation, "MINZU_TYPE", true);
|
||||
SynchroSetService.InitCountryDropDownList(this.drpCountryCode, true);
|
||||
Funs.FineUIPleaseSelect(this.drpProvinceCode);
|
||||
Funs.FineUIPleaseSelect(this.drpProvinceCode);
|
||||
BLL.UnitService.InitUnitDropDownList(this.drpUnit, this.ProjectId, true);
|
||||
|
||||
}
|
||||
|
@ -546,9 +546,9 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
|||
|
||||
//if (!BLL.PersonService.IsExistPersonByUnit(this.UnitId, this.txtPersonName.Text.Trim(), this.ProjectId))
|
||||
//{
|
||||
this.PersonId = SQLHelper.GetNewID(typeof(Model.SitePerson_Person));
|
||||
person.PersonId = this.PersonId;
|
||||
BLL.PersonService.AddPerson(person);
|
||||
this.PersonId = SQLHelper.GetNewID(typeof(Model.SitePerson_Person));
|
||||
person.PersonId = this.PersonId;
|
||||
BLL.PersonService.AddPerson(person);
|
||||
//}
|
||||
|
||||
BLL.LogService.AddSys_Log(this.CurrUser, person.PersonName, person.PersonId, BLL.Const.PersonListMenuId, BLL.Const.BtnAdd);
|
||||
|
@ -613,8 +613,8 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
|||
|
||||
|
||||
|
||||
var user = Funs.DB.Sys_User.FirstOrDefault(x => x.IdentityCard == person.IdentityCard);
|
||||
if (user!=null && user.UnitId != person.UnitId)
|
||||
var user = Funs.DB.Sys_User.FirstOrDefault(x => x.IdentityCard == person.IdentityCard);
|
||||
if (user != null && user.UnitId != person.UnitId)
|
||||
{
|
||||
user.UnitId = person.UnitId;
|
||||
Funs.DB.SubmitChanges();
|
||||
|
@ -624,7 +624,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
|||
///上传人脸库
|
||||
var getProject = ProjectService.GetProjectByProjectId(person.ProjectId);
|
||||
if (!string.IsNullOrEmpty(person.PhotoUrl) && getProject != null && getProject.IsFace == true)
|
||||
{
|
||||
{
|
||||
Alert.ShowInParent(APIPersonService.PersonFace(person), MessageBoxIcon.Warning);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue