summaryrefslogtreecommitdiff
path: root/lib/avl/table/avl-table-columns.tsx
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-09-24 17:36:08 +0900
committerjoonhoekim <26rote@gmail.com>2025-09-24 17:36:08 +0900
commitbf2db28586569499e44b58999f2e0f33ed4cdeb5 (patch)
tree9ef9305829fdec30ec7a442f2ba0547a62dba7a9 /lib/avl/table/avl-table-columns.tsx
parent1bda7f20f113737f4af32495e7ff24f6022dc283 (diff)
(김준회) 구매 요청사항 반영 - vendor-pool 및 avl detail (이진용 프로)
Diffstat (limited to 'lib/avl/table/avl-table-columns.tsx')
-rw-r--r--lib/avl/table/avl-table-columns.tsx16
1 files changed, 7 insertions, 9 deletions
diff --git a/lib/avl/table/avl-table-columns.tsx b/lib/avl/table/avl-table-columns.tsx
index 6ec2c3db..06005d3d 100644
--- a/lib/avl/table/avl-table-columns.tsx
+++ b/lib/avl/table/avl-table-columns.tsx
@@ -45,9 +45,7 @@ export function getColumns({ selectedRows = [], onRowSelect }: GetColumnsProps):
enableSorting: false,
enableHiding: false,
enableResizing: false,
- size: 10,
- minSize: 10,
- maxSize: 10,
+ size: 50,
},
// No 컬럼
{
@@ -57,7 +55,7 @@ export function getColumns({ selectedRows = [], onRowSelect }: GetColumnsProps):
),
cell: ({ getValue }) => <div className="text-center">{getValue() as number}</div>,
enableResizing: true,
- size: 60,
+ size: 100,
},
// AVL 분류 컬럼
{
@@ -148,7 +146,7 @@ export function getColumns({ selectedRows = [], onRowSelect }: GetColumnsProps):
{
accessorKey: "htDivision",
header: ({ column }) => (
- <DataTableColumnHeaderSimple column={column} title="H/T 구분" />
+ <DataTableColumnHeaderSimple column={column} title="H/T" />
),
cell: ({ getValue }) => {
const value = getValue() as string
@@ -205,7 +203,7 @@ export function getColumns({ selectedRows = [], onRowSelect }: GetColumnsProps):
<DataTableColumnHeaderSimple column={column} title="자재그룹" />
),
enableResizing: true,
- size: 120,
+ size: 100,
},
// 협력업체 컬럼
{
@@ -214,7 +212,7 @@ export function getColumns({ selectedRows = [], onRowSelect }: GetColumnsProps):
<DataTableColumnHeaderSimple column={column} title="협력업체" />
),
enableResizing: true,
- size: 150,
+ size: 100,
},
// Tier 컬럼
{
@@ -280,7 +278,7 @@ export function getColumns({ selectedRows = [], onRowSelect }: GetColumnsProps):
return <div className="text-center text-sm">{date}</div>
},
enableResizing: true,
- size: 100,
+ size: 120,
},
// 최종변경자 컬럼
{
@@ -293,7 +291,7 @@ export function getColumns({ selectedRows = [], onRowSelect }: GetColumnsProps):
return <div className="text-center text-sm">{value}</div>
},
enableResizing: true,
- size: 100,
+ size: 120,
},
// 액션 컬럼
{