From 495d818eb3d61f664ff8ac92085cde95ef1183f9 Mon Sep 17 00:00:00 2001 From: Bright Date: Fri, 18 Apr 2025 16:15:53 +0700 Subject: [PATCH] no message --- src/controllers/DevelopmentRequestController.ts | 1 + src/controllers/ProfileEditController.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/controllers/DevelopmentRequestController.ts b/src/controllers/DevelopmentRequestController.ts index 28fbef4d..b02b6bf0 100644 --- a/src/controllers/DevelopmentRequestController.ts +++ b/src/controllers/DevelopmentRequestController.ts @@ -263,6 +263,7 @@ export class DevelopmentRequestController extends Controller { sysName: "REGISTRY_IDP", posLevelName: profile.posLevel.posLevelName, posTypeName: profile.posType.posTypeName, + fullName: `${profile.prefix}${profile.firstName} ${profile.lastName}` }) .catch((error) => { console.error("Error calling API:", error); diff --git a/src/controllers/ProfileEditController.ts b/src/controllers/ProfileEditController.ts index b8cec66d..605e141f 100644 --- a/src/controllers/ProfileEditController.ts +++ b/src/controllers/ProfileEditController.ts @@ -230,6 +230,7 @@ export class ProfileEditController extends Controller { sysName: "REGISTRY_PROFILE", posLevelName: profile.posLevel.posLevelName, posTypeName: profile.posType.posTypeName, + fullName: `${profile.prefix}${profile.firstName} ${profile.lastName}` }) .catch((error) => { console.error("Error calling API:", error);