diff --git a/backend/data_consolidator.py b/backend/data_consolidator.py index 57d53c9..98669f2 100644 --- a/backend/data_consolidator.py +++ b/backend/data_consolidator.py @@ -248,11 +248,6 @@ def normalize_product(raw_product, category_name, social_details): ) break - # ── Satıcı bilgileri ── - seller_count = len(merchant_listings) - has_buybox = merchant_listings[0].get("isWinner", False) if merchant_listings else False - is_trendyol_product = barcode.startswith(("TYB", "SGT", "KPE", "RTN", "CDM")) if barcode else False - return { "id": product_id, "name": raw_product.get("name", ""), @@ -272,9 +267,6 @@ def normalize_product(raw_product, category_name, social_details): "image_url": image_url or "https://via.placeholder.com/150", "url": product_url, "in_stock": raw_product.get("inStock", False), - "seller_count": seller_count, - "has_buybox": has_buybox, - "is_trendyol_product": is_trendyol_product, }