Fix issue #1678
Some checks failed
release-dev / release-dev (push) Failing after 10s

This commit is contained in:
Bright 2025-07-30 11:30:38 +07:00
parent 1f41b96844
commit 708ef29ebe

View file

@ -2247,6 +2247,13 @@ namespace BMA.EHR.DisciplineResult.Service.Controllers
commandCode = r.commandCode,
commandName = r.commandName,
remark = r.remark,
orgRoot = p.root,
orgChild1 = p.child1,
orgChild2 = p.child2,
orgChild3 = p.child3,
orgChild4 = p.child4,
posNo = p.posMasterNo != null ? p.posMasterNo.ToString() : null,
posNoAbb = p.child4ShortName != null ? p.child4ShortName : (p.child3ShortName != null ? p.child3ShortName : (p.child2ShortName != null ? p.child2ShortName : (p.child1ShortName != null ? p.child1ShortName : (p.rootShortName != null ? p.rootShortName : "")))),
}).ToList();
using (var client = new HttpClient())
{
@ -2264,7 +2271,6 @@ namespace BMA.EHR.DisciplineResult.Service.Controllers
}
}
return Success();
}