feat: remove Classification column from Cosmetic Items tab

Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
Christian Vidal Wolf
2026-05-08 13:30:59 +02:00
co-authored by claude-flow
parent 1556aea081
commit e303c759d7
-4
View File
@@ -32,7 +32,6 @@ export function CosmeticItemsView({ data, headers, onSaveRow, onCaptureState, ro
{ col: COLUMNS.ARTICLE_NO, label: 'SKU', width: 110 }, { col: COLUMNS.ARTICLE_NO, label: 'SKU', width: 110 },
{ col: COLUMNS.ARTICLE_NAME, label: 'Name', width: 240 }, { col: COLUMNS.ARTICLE_NAME, label: 'Name', width: 240 },
{ col: COLUMNS.LINE, label: 'Line', width: 120 }, { col: COLUMNS.LINE, label: 'Line', width: 120 },
{ col: COLUMNS.CLASSIFICATION, label: 'Classification', width: 130 },
{ col: COLUMNS.ITEM_AVAILABLE, label: 'Item Available', width: 120 }, { col: COLUMNS.ITEM_AVAILABLE, label: 'Item Available', width: 120 },
{ col: COLUMNS.CPNP_NO, label: 'CPNP No.', width: 160 }, { col: COLUMNS.CPNP_NO, label: 'CPNP No.', width: 160 },
]; ];
@@ -266,9 +265,6 @@ export function CosmeticItemsView({ data, headers, onSaveRow, onCaptureState, ro
{row[COLUMNS.LINE]} {row[COLUMNS.LINE]}
</span> </span>
</td> </td>
<td className="px-3 py-2 truncate text-slate-300" style={{ width: 130 }}>
{row[COLUMNS.CLASSIFICATION] || <span className="text-slate-600"></span>}
</td>
<td className="px-3 py-2 font-mono text-slate-300 text-right" style={{ width: 120 }}> <td className="px-3 py-2 font-mono text-slate-300 text-right" style={{ width: 120 }}>
{row[COLUMNS.ITEM_AVAILABLE]} {row[COLUMNS.ITEM_AVAILABLE]}
</td> </td>