From 04444d218267a296e2faf1d7d9228733b51b7704 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sat, 5 Jul 2025 08:57:23 -0400 Subject: [PATCH] 'status': t.status, --- app/api/services/products.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/api/services/products.py b/app/api/services/products.py index 0ada032..e072a80 100644 --- a/app/api/services/products.py +++ b/app/api/services/products.py @@ -68,7 +68,8 @@ class ProductsService(BaseService): 'product_id': t.product_id, 'description': t.description, 'name': t.name, - 'status': t.status, + # 'status': t.status, + 'status': 5, 'added': t.added.isoformat() if t.added else None, 'updated': t.updated.isoformat() if t.updated else None, 'banner': t.banner,