mirror of
https://github.com/christianvidalwolf-prog/CrazeAnalytix.git
synced 2026-08-03 15:15:24 +02:00
Ignore Buy Box warnings with 'Fixed' status
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user