diff options
| author | joonhoekim <26rote@gmail.com> | 2025-09-22 19:33:16 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-09-22 19:33:16 +0900 |
| commit | 480ac58010604140d1a52fa2b839aedb6ac15941 (patch) | |
| tree | 4cc45c96ea174991d59c1a058ed9da05a2a3ac8c /lib/soap/ecc/send/create-po.ts | |
| parent | ba35e67845f935c8ce0151c9ef1fefa0b0510faf (diff) | |
(김준회) POS I/F 로직 및 UI 처리 구현
Diffstat (limited to 'lib/soap/ecc/send/create-po.ts')
| -rw-r--r-- | lib/soap/ecc/send/create-po.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/soap/ecc/send/create-po.ts b/lib/soap/ecc/send/create-po.ts index 444d9cc1..47894d50 100644 --- a/lib/soap/ecc/send/create-po.ts +++ b/lib/soap/ecc/send/create-po.ts @@ -8,14 +8,14 @@ const ECC_PO_ENDPOINT = "http://shii8dvddb01.hec.serp.shi.samsung.net:50000/sap/ // PO 헤더 데이터 타입 export interface POHeaderData { - ANFNR: string; // Bidding Number (M) + ANFNR: string; // Bidding Number (M) // BiddingNumber이지만, RFQ/Bidding 모두 받은 ANFNR 사용하면 됩니다. (RFQ/Bidding Header Key) LIFNR: string; // Vendor Account Number (M) ZPROC_IND: string; // Purchasing Processing State (M) - ANGNR?: string; // Bidding Number + ANGNR?: string; // Bidding Number // 더 이상 사용하지 않음. 보내지 않으면 됨. WAERS: string; // Currency Key (M) ZTERM: string; // Terms of Payment Key (M) - INCO1: string; // Incoterms (Part 1) (M) - INCO2: string; // Incoterms (Part 2) (M) + INCO1: string; // Incoterms (Part 1) (M) //인코텀즈코드 3자리 + INCO2: string; // Incoterms (Part 2) (M) //자유입력28자리, 인코텀즈 풀네임 28자리로 잘라 넣으면 될 듯... 데이터예시: 시방서에 따름 VSTEL?: string; // Shipping Point LSTEL?: string; // loading Point MWSKZ: string; // Tax on sales/purchases code (M) |
