From aa745b4d5ebed925fb86658d557db9e03386fc2c Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Wed, 25 Feb 2026 12:38:58 +0100 Subject: [PATCH] feat(data): map product line from column R --- services/dataProcessor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/dataProcessor.ts b/services/dataProcessor.ts index 0009bca..4186894 100644 --- a/services/dataProcessor.ts +++ b/services/dataProcessor.ts @@ -316,7 +316,7 @@ const mapRowToRecord = (row: any, index: number): SalesRecord => { const weekStr = getColumnValue(row, ['WEEK', 'Week', 'CW', 'Semana', 'KW', 'E']); const weekNum = weekStr ? parseInt(weekStr.replace(/cw/i, '').trim(), 10) : NaN; const week = isNaN(weekNum) ? undefined : weekNum; - const line = getColumnValue(row, ['LICENSE', 'License']) || 'Unassigned'; + const line = getColumnValue(row, ['PRODUCT LINE', 'Product Line', 'LINE', 'LICENSE', 'License']) || 'Unassigned'; const asin = getColumnValue(row, [ 'CUSTOMER REFERENCE', 'AMAZON ASIN', 'ASIN', 'Asin', 'PRODUCT ID', 'ITEM IDENTIFIER', 'ASIN NO.', 'Product ASIN', 'IDENTIFIER'