diff options
| author | joonhoekim <26rote@gmail.com> | 2025-11-19 17:00:04 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-11-19 17:00:04 +0900 |
| commit | d5a143d6e404644707efad20f9be753fcab5463e (patch) | |
| tree | bbb15bc34bc2f113ceb2d258295011161c2012cf /lib | |
| parent | 3284b70bacb7074d86170b38b7ec6b01e2aa6954 (diff) | |
(김준회) fix: PO 액션 관련, 리팩터링 import 미적용 파트 fix
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/soap/ecc/send/create-po-bidding.ts | 5 | ||||
| -rw-r--r-- | lib/soap/ecc/send/create-po-rfq.ts | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lib/soap/ecc/send/create-po-bidding.ts b/lib/soap/ecc/send/create-po-bidding.ts index 95013b82..cf078997 100644 --- a/lib/soap/ecc/send/create-po-bidding.ts +++ b/lib/soap/ecc/send/create-po-bidding.ts @@ -4,8 +4,9 @@ 'use server' -import { sendSoapXml, type SoapSendConfig, type SoapLogInfo, type SoapSendResult } from "@/lib/soap/sender"; -import { getCurrentSAPDate, getCurrentSAPTime } from "@/lib/soap/utils"; +import { sendSoapXml, } from "@/lib/soap/sender"; +import { SoapSendConfig, SoapLogInfo, SoapSendResult } from "@/lib/soap/types"; +import { getCurrentSAPDate } from "@/lib/soap/utils"; // ECC PO 생성 엔드포인트 (WSDL에 명시된 P2038_D 사용) const ECC_PO_ENDPOINT = "http://shii8dvddb01.hec.serp.shi.samsung.net:50000/sap/xi/engine?type=entry&version=3.0&Sender.Service=P2038_Q&Interface=http%3A%2F%2Fshi.samsung.co.kr%2FP2_MM%2FMMM%5EP2MM3015_SO"; diff --git a/lib/soap/ecc/send/create-po-rfq.ts b/lib/soap/ecc/send/create-po-rfq.ts index d9c1551d..2cc85731 100644 --- a/lib/soap/ecc/send/create-po-rfq.ts +++ b/lib/soap/ecc/send/create-po-rfq.ts @@ -3,7 +3,8 @@ */ 'use server' -import { sendSoapXml, type SoapSendConfig, type SoapLogInfo, type SoapSendResult } from "@/lib/soap/sender"; +import { sendSoapXml, } from "@/lib/soap/sender"; +import { SoapSendConfig, SoapLogInfo, SoapSendResult } from "@/lib/soap/types"; import { getCurrentSAPDate } from "@/lib/soap/utils"; // ECC RFQ 정보 전송 엔드포인트 (WSDL에 명시된 P2MM3014_SO 사용) |
