This commit is contained in:
geh
2026-09-15 17:49:45 +08:00
parent 33462d35e8
commit 85c7e28763
@@ -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 "";
} }