diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-10 09:55:45 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-10 09:55:45 +0000 |
| commit | c657ef972feeafff16ab0e07cb4771f7dd141ba0 (patch) | |
| tree | befabd884b00d3cc632c628b3e3810f61cc9f38d /config | |
| parent | b8a03c9d130435a71c5d6217d06ccb0beb9697e5 (diff) | |
(대표님) 20250710 작업사항 - 평가 첨부, 로그인, SEDP 변경 요구사항 반영
Diffstat (limited to 'config')
| -rw-r--r-- | config/itemsColumnsConfig.ts | 41 |
1 files changed, 27 insertions, 14 deletions
diff --git a/config/itemsColumnsConfig.ts b/config/itemsColumnsConfig.ts index e39bde11..044afc7d 100644 --- a/config/itemsColumnsConfig.ts +++ b/config/itemsColumnsConfig.ts @@ -21,6 +21,16 @@ export const itemsColumnsConfig: ItemColumnConfig[] = [ // filterable: true, // width: 80, // }, + + { + id: "ProjectNo", + label: "Project No", + excelHeader: "Project No", + type: "text", + sortable: true, + filterable: true, + width: 150, + }, { id: "itemCode", label: "PKG Code(PK)", @@ -30,15 +40,17 @@ export const itemsColumnsConfig: ItemColumnConfig[] = [ filterable: true, width: 150, }, + { - id: "itemName", - label: "패키지 이름", - excelHeader: "패키지 이름", + id: "description", + label: "PKG Code Decription", + excelHeader: "PKG Code Decription", type: "text", sortable: true, filterable: true, - width: 250, + width: 300, }, + { id: "packageCode", label: "PKG Code", @@ -49,6 +61,15 @@ export const itemsColumnsConfig: ItemColumnConfig[] = [ width: 150, }, { + id: "itemName", + label: "패키지 이름", + excelHeader: "패키지 이름", + type: "text", + sortable: true, + filterable: true, + width: 250, + }, + { id: "smCode", label: "SM Code", excelHeader: "SM Code", @@ -58,15 +79,7 @@ export const itemsColumnsConfig: ItemColumnConfig[] = [ width: 150, }, - // { - // id: "description", - // label: "상세", - // excelHeader: "상세", - // type: "text", - // sortable: true, - // filterable: true, - // width: 300, - // }, + // { // id: "baseUnitOfMeasure", // label: "기본단위", @@ -77,7 +90,7 @@ export const itemsColumnsConfig: ItemColumnConfig[] = [ // width: 100, // }, { - id: "changeDate", + id: "updatedAt", label: "마지막 변경일", excelHeader: "마지막 변경일", type: "date", |
