REQ-3581: 添加印章人员的时间, 添加人员信息

This commit is contained in:
yanglin 2025-02-28 14:12:01 +08:00
parent 47296c64f6
commit 7be1275ee0

View File

@ -160,7 +160,7 @@ public class OrgManager {
public void addSealPerson(String essSealId, Long personId) {
EssSeal seal = essSealDao.findByEssSealId(essSealId).orElse(null);
BizAssertions.assertNotNull(seal, "印章不存在: {}", essSealId);
//noinspection DataFlowIssue
//noinspection DataFlowIssue
getOrCreateOrgPerson(OrgPersonInfo.create(seal.getOuId(), personId));
maybeAddSealPerson(essSealId, personId);
}