diff --git a/src/controllers/CommandController.ts b/src/controllers/CommandController.ts index a10c93ce..79199ba6 100644 --- a/src/controllers/CommandController.ts +++ b/src/controllers/CommandController.ts @@ -3065,6 +3065,9 @@ export class CommandController extends Controller { commandCode?: string | null; commandName?: string | null; remark: string | null; + positionTypeNew?: string | null; + positionLevelNew?: string | null; + positionNameNew?: string | null; }[]; }, ) { @@ -3145,6 +3148,9 @@ export class CommandController extends Controller { profile.leaveRemark = _null; profile.leaveDate = _null; profile.leaveType = _null; + profile.position = item.positionNameNew ?? _null; + profile.posTypeId = item.positionTypeNew ?? _null; + profile.posLevelId = item.positionLevelNew ?? _null } let userKeycloakId; const checkUser = await getUserByUsername(profile.citizenId);