From 98e8bb39045ce40d3c9af086d8a2afb2f711fb44 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Wed, 28 Jan 2026 16:43:18 +0100 Subject: [PATCH] Add Annual Forecast column to Fc 26 tab and Excel export --- components/ForecastView.tsx | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/components/ForecastView.tsx b/components/ForecastView.tsx index 492f2b9..8d80b15 100644 --- a/components/ForecastView.tsx +++ b/components/ForecastView.tsx @@ -105,6 +105,13 @@ const ForecastRow: React.FC<{ + {/* Annual Forecast */} + + + {(item.annualForecast || 0).toLocaleString('de-DE')} + + + {/* Forecast (Period) */} @@ -279,6 +286,7 @@ const ForecastView: React.FC = ({ ASIN: p.asin, Title: p.title, Line: p.line, + 'Annual Forecast': p.annualForecast, 'Forecast (Period)': p.forecastPeriod, 'Actual Units (2026)': p.actualUnits, 'FC 26 Achievement (%)': p.fcAchievement, @@ -392,19 +400,22 @@ const ForecastView: React.FC = ({ - + - -
handleSort('sku')}> + handleSort('sku')}> Product Info handleSort('annualForecast')}> + Annual Forecast + handleSort('forecastPeriod')}> Forecast (Period) handleSort('actualUnits')}> Actual Units 2026 handleSort('fcAchievement')}> + handleSort('fcAchievement')}> FC 26 Achievement handleSort('ytdAchievement')}> + handleSort('ytdAchievement')}> YTD Achievement