From dd10e1a41f3f82d83448929e31780e18da018d47 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sun, 12 Jan 2025 12:50:36 -0500 Subject: [PATCH] PRODUCT_LIST --- services/web/project/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index 25026c8..014a5b6 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -615,6 +615,7 @@ def panel_products(current_user): RIGHT JOIN members_products mp ON mp.product_id = p.product_id WHERE mp.member_id ={user_id} ORDER BY p.id ASC""" + print( PRODUCT_LIST ) with connection.cursor(cursor_factory=psycopg2.extras.DictCursor) as cursor: cursor.execute(PRODUCT_LIST) products_list = cursor.fetchall()