diff options
Diffstat (limited to 'lib/swp/vendor-actions.ts')
| -rw-r--r-- | lib/swp/vendor-actions.ts | 6 |
1 files changed, 3 insertions, 3 deletions
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) { |
