diff options
| author | joonhoekim <26rote@gmail.com> | 2025-12-03 17:27:21 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-12-03 17:27:21 +0900 |
| commit | 7b2718ba47b69ed4b1bf20977cebe93393191839 (patch) | |
| tree | d54b74602227da66667c13230cca1c3db46ab4f1 /lib/dolce/actions.ts | |
| parent | cff5682ee787c02564c25c30dd44a99e6cad7839 (diff) | |
(김준회) dolce: 1) 도면리스트 테이블에 상세도면수 컬럼 추가, 2) 상세도면편집 API 호출시 부모 도면의 ManagerNo를 Manager에 넣어서 보내도록 수정
Diffstat (limited to 'lib/dolce/actions.ts')
| -rw-r--r-- | lib/dolce/actions.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/dolce/actions.ts b/lib/dolce/actions.ts index 501c6cb0..fe246956 100644 --- a/lib/dolce/actions.ts +++ b/lib/dolce/actions.ts @@ -20,6 +20,7 @@ export interface DwgReceiptItem { CreateUserENM: string | null; CreateUserId: string | null; CreateUserNo: string; + DetailDwgCNT: number; Discipline: string; DrawingKind: string; DrawingMoveGbn: string; @@ -44,6 +45,7 @@ export interface GttDwgReceiptItem { CreateUserENM: string; CreateUserId: string; CreateUserNo: string; + DetailDwgCNT: number; DGbn: string | null; DegreeGbn: string | null; DeptGbn: string | null; @@ -946,7 +948,7 @@ export async function prepareB4DetailDrawingsV2(params: { DrawingRevNo: revNo, Category: category, Receiver: null, - Manager: drawingInfo.Manager || "970043", + Manager: drawingInfo.ManagerNo, RegisterDesc: "", UploadId: uploadId, RegCompanyCode: vendorCode, @@ -1188,7 +1190,7 @@ export async function bulkUploadB4FilesV2( DrawingRevNo: revNo, Category: category, Receiver: null, - Manager: drawingInfo.Manager || "970043", + Manager: drawingInfo.ManagerNo, RegisterDesc: registerDesc, UploadId: uploadId, RegCompanyCode: vendorCode, |
