1
This commit is contained in:
@@ -258,7 +258,11 @@ namespace FineUIPro.Web.CQMS.Check
|
|||||||
{
|
{
|
||||||
if (persionid != null && !string.IsNullOrEmpty(persionid.ToString()))
|
if (persionid != null && !string.IsNullOrEmpty(persionid.ToString()))
|
||||||
{
|
{
|
||||||
return BLL.PersonService.GetPersonById(persionid.ToString()).PersonName;
|
SitePerson_Person person = BLL.PersonService.GetPersonById(persionid.ToString());
|
||||||
|
if (person != null)
|
||||||
|
{
|
||||||
|
return person.PersonName;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user