20210819单位人员考勤未知人员查询方法修改
This commit is contained in:
@@ -246,9 +246,11 @@ namespace FineUIPro.Web.HSSE.SitePerson
|
||||
string[] personIds = this.drpPersonId.Value.Split(',');
|
||||
foreach (var item in personIds)
|
||||
{
|
||||
Model.SitePerson_Checking personInfo = new Model.SitePerson_Checking();
|
||||
personInfo.ProjectId = this.ProjectId;
|
||||
personInfo.PersonId = item.Trim();
|
||||
Model.SitePerson_Checking personInfo = new Model.SitePerson_Checking
|
||||
{
|
||||
ProjectId = this.ProjectId,
|
||||
PersonId = item.Trim()
|
||||
};
|
||||
var person = BLL.PersonService.GetPersonById(personInfo.PersonId);
|
||||
if (person != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user