diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-05 11:44:32 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-05 11:44:32 +0000 |
| commit | 50adedf48ee4674ebe00f1ee72d93485183cdc51 (patch) | |
| tree | 18053ab04d94c750028eee5d5d2f16ba4f38f50e /components/form-data-stat/form-data-stat-table.tsx | |
| parent | 66d64b482f2b6b52b0dd396ef998f27d491c70dd (diff) | |
(대표님, 최겸, 임수민) EDP 입력 진행률, 견적목록관리, EDP excel import 오류수정, GTC-Contract
Diffstat (limited to 'components/form-data-stat/form-data-stat-table.tsx')
| -rw-r--r-- | components/form-data-stat/form-data-stat-table.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/components/form-data-stat/form-data-stat-table.tsx b/components/form-data-stat/form-data-stat-table.tsx index 624e85fb..fe59785d 100644 --- a/components/form-data-stat/form-data-stat-table.tsx +++ b/components/form-data-stat/form-data-stat-table.tsx @@ -83,6 +83,7 @@ export function VendorFormStatusTable({ ), size: 200, enablePinning: true, + meta: { excelHeader: "벤더명" }, }, { accessorKey: "formCount", @@ -93,6 +94,7 @@ export function VendorFormStatusTable({ </div> ), size: 100, + meta: { excelHeader: "Form 개수" }, }, { accessorKey: "tagCount", @@ -103,6 +105,7 @@ export function VendorFormStatusTable({ </div> ), size: 100, + meta: { excelHeader: "Tag 개수" }, }, { accessorKey: "totalFields", @@ -113,6 +116,7 @@ export function VendorFormStatusTable({ </div> ), size: 100, + meta: { excelHeader: "전체 필드" }, }, { accessorKey: "completedFields", @@ -123,6 +127,7 @@ export function VendorFormStatusTable({ </div> ), size: 100, + meta: { excelHeader: "완료 필드" }, }, { accessorKey: "completionRate", @@ -145,6 +150,7 @@ export function VendorFormStatusTable({ ); }, size: 180, + meta: { excelHeader: "완료율" }, }, { id: "progress", @@ -158,6 +164,7 @@ export function VendorFormStatusTable({ ); }, size: 120, + meta: { excelHeader: "진행 상태" }, }, ], []); |
