diff options
Diffstat (limited to 'lib/vendor-regular-registrations')
| -rw-r--r-- | lib/vendor-regular-registrations/service.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/vendor-regular-registrations/service.ts b/lib/vendor-regular-registrations/service.ts index c4f1a2a8..42b43d6f 100644 --- a/lib/vendor-regular-registrations/service.ts +++ b/lib/vendor-regular-registrations/service.ts @@ -1281,6 +1281,7 @@ export async function sendRegistrationRequestToMDG( const session = await getServerSession(authOptions);
const userId = session?.user?.id || 'EVCP_USER';
const userName = session?.user?.name || 'EVCP_USER';
+ const userKnoxId = session?.user?.knoxId || 'EVCP_USER';
// 등록 정보 조회
const registration = await db
.select()
@@ -1333,7 +1334,7 @@ export async function sendRegistrationRequestToMDG( IBND_TYPE: 'I',
// 10. ZZREQID: SAP의 USER ID를 보내드리겠습니다. (필수)
- ZZREQID: userName,
+ ZZREQID: userKnoxId,
// 11. ADDRNO: I/F정의서에는 필수입력으로 되어 있습니다. -> 빈값으로 처리 (필수)
ADDRNO: '',
|
