feat: implement Forecast 2026 (Fc 26) tab with seasonality logic and actual sales comparison

This commit is contained in:
Christian Vidal Wolf
2026-01-26 15:47:36 +01:00
parent 18c4ef375b
commit e213ef0d16
7 changed files with 402 additions and 4 deletions
+19
View File
@@ -194,3 +194,22 @@ export interface CombinedKPIs {
cvrUnits: number;
glanceViews: number; // Traffic / page views
}
export interface ForecastRecord {
asin: string;
annualForecast: number;
}
export interface MonthlyForecastPoint {
month: string;
forecastUnits: number;
actualUnits: number;
}
export interface ProductForecastData {
asin: string;
sku: string;
title: string;
annualForecast: number;
monthlyData: MonthlyForecastPoint[];
}