diff --git a/services/dataProcessor.ts b/services/dataProcessor.ts index a9b7ab2..5580fd0 100644 --- a/services/dataProcessor.ts +++ b/services/dataProcessor.ts @@ -1975,8 +1975,8 @@ export const processBuyBoxExcel = async (fileOrBuffer: File | ArrayBuffer): Prom const rawReason = String(row[config.reasonCol] || '').trim(); // Only consider as BB lost if there is an Issue Type / Reason specified - // Empty reason means no issue = they have the Buy Box - if (!rawReason) continue; + // Empty reason or "Fixed" status means no issue = they have the Buy Box + if (!rawReason || rawReason.toLowerCase() === 'fixed') continue; const reason = rawReason;