This commit is contained in:
2025-04-04 16:02:11 -04:00
parent c1ab5d611f
commit 544f789e2e
2 changed files with 9 additions and 9 deletions

View File

@@ -126,7 +126,7 @@ class PricingService:
added_quantity = str(row.get('add_to_quantity')) if not pd.isna(row.get('add_to_quantity')) else "0"
quantity = int(total_quantity) + int(added_quantity)
if tcg_low is None or tcg_low_shipping is None:
if tcg_market_price is None:
logger.warning(f"Missing pricing data for row: {row}")
row['new_price'] = None
return row