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()