From 4c39c9ec53e8a598904a83c0e8614761a99bbf2e Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Mon, 20 Apr 2026 16:51:54 +0200 Subject: [PATCH] Add Outer W, L, H columns to Pricing tab Display outer box dimensions next to Units/Outer column in pricing view --- src/components/PricingView.tsx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/components/PricingView.tsx b/src/components/PricingView.tsx index 5e9d5d9..af17dd9 100644 --- a/src/components/PricingView.tsx +++ b/src/components/PricingView.tsx @@ -445,6 +445,21 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit, Units/Outer + {/* Outer W */} + + Outer W + + + {/* Outer L */} + + Outer L + + + {/* Outer H */} + + Outer H + + {/* Container columns */} {containerCols.map(col => ( @@ -574,6 +589,21 @@ export function PricingView({ data, headers, onSaveRow, onCaptureState, onEdit, {unitOuterBadge(row[COLUMNS.UNITS_OUTER])} + {/* Outer W */} + + {row[COLUMNS.OUTER_W] ?? '-'} + + + {/* Outer L */} + + {row[COLUMNS.OUTER_L] ?? '-'} + + + {/* Outer H */} + + {row[COLUMNS.OUTER_H] ?? '-'} + + {/* Container unit columns */} {containerCols.map(col => (