diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-10-01 10:31:23 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-10-01 10:31:23 +0000 |
| commit | 74843fe598702a9a55f914f2d2d291368a5abb13 (patch) | |
| tree | a88abdaf039f51dd843e0416321f08877b17ea75 /lib/vendor-document-list/plant | |
| parent | 33e8452331c301430191b3506825ebaf3edac93a (diff) | |
(대표님) dolce 수정, spreadjs 수정 등
Diffstat (limited to 'lib/vendor-document-list/plant')
| -rw-r--r-- | lib/vendor-document-list/plant/document-stages-columns.tsx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/vendor-document-list/plant/document-stages-columns.tsx b/lib/vendor-document-list/plant/document-stages-columns.tsx index d71ecc0f..9a53b55b 100644 --- a/lib/vendor-document-list/plant/document-stages-columns.tsx +++ b/lib/vendor-document-list/plant/document-stages-columns.tsx @@ -347,6 +347,26 @@ export function getDocumentStagesColumns({ }, }, + { + accessorKey: "buyerSystemComment", + header: ({ column }) => ( + <DataTableColumnHeaderSimple column={column} title="Document Comment" /> + ), + cell: ({ row }) => { + const doc = row.original + + return ( + <div className="flex items-center gap-2"> + {doc.buyerSystemComment} + </div> + ) + }, + size: 180, + enableResizing: true, + meta: { + excelHeader: "Document Comment" + }, + }, // { // accessorKey: "buyerSystemStatus", // header: ({ column }) => ( |
