diff options
| author | joonhoekim <26rote@gmail.com> | 2025-09-12 11:38:30 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-09-12 11:38:30 +0000 |
| commit | 04752b7096554c4a961ebc1f09ff0e81ea9def68 (patch) | |
| tree | fb68465b0ff94c4e9d94eeaec016b1f22c29be26 /app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION | |
| parent | a9575387c3a765a1a65ebc179dae16a21af6eb25 (diff) | |
(김준회) ECC 데이터 응답 구조 오류 수정
Diffstat (limited to 'app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION')
| -rw-r--r-- | app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION/route.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION/route.ts b/app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION/route.ts index e195c7f6..012f47fc 100644 --- a/app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION/route.ts +++ b/app/api/(S-ERP)/(ECC)/IF_ECC_EVCP_PR_INFORMATION/route.ts @@ -138,6 +138,7 @@ export async function POST(request: NextRequest) { return createSoapResponse('http://60.101.108.100/', { 'tns:IF_ECC_EVCP_PR_INFORMATIONRes': { EV_TYPE: 'S', + EV_MESSAGE: 'Success', }, }); } @@ -146,8 +147,7 @@ export async function POST(request: NextRequest) { return createSoapResponse('http://60.101.108.100/', { 'tns:IF_ECC_EVCP_PR_INFORMATIONRes': { EV_TYPE: 'E', - EV_MESSAGE: - error instanceof Error ? error.message.slice(0, 100) : 'Unknown error', + EV_MESSAGE: error instanceof Error ? error.message.slice(0, 100) : 'Unknown error', }, }); }); |
