From b43b1d92ef3d7e57b5df5cd72f75dc3a1c3f1c7a Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Thu, 27 Nov 2025 13:48:44 +0900 Subject: (김준회) swp 파일 개수 컬럼 삭제 (API에서 주지 않는 데이터), dolce rebuild 에서 상태값 수정, bulk upload MatchBatchFileDwg API 사용해 Edit 으로 보내도록 수정 (Category, status 하드코딩 값 넣어주도록 처리), 상세도면, 파일 추가시 확인 다이얼로그 추가 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/swp/vendor-actions.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/swp/vendor-actions.ts') diff --git a/lib/swp/vendor-actions.ts b/lib/swp/vendor-actions.ts index 78521fed..12b7c513 100644 --- a/lib/swp/vendor-actions.ts +++ b/lib/swp/vendor-actions.ts @@ -304,9 +304,9 @@ export async function fetchVendorSwpStats(projNo?: string) { let uploadedFiles = 0; for (const doc of documents) { - totalFiles += doc.fileCount; - // standbyFileCount가 0이 아니면 업로드된 것으로 간주 - uploadedFiles += doc.fileCount - doc.standbyFileCount; + // 파일 통계는 더 이상 계산하지 않음 (API 호출 제거됨) + // totalFiles += doc.fileCount; + // uploadedFiles += doc.fileCount - doc.standbyFileCount; // 리비전 수 추정 (LTST_REV_NO 기반) if (doc.LTST_REV_NO) { -- cgit v1.2.3