This commit is contained in:
2026-09-15 17:50:52 +08:00
@@ -258,7 +258,11 @@ namespace FineUIPro.Web.CQMS.Check
{
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 "";
}