diff --git a/wwwroot/discount_setting/get_products_with_discount.dspy b/wwwroot/discount_setting/get_products_with_discount.dspy index faf6ca4..1fd4664 100644 --- a/wwwroot/discount_setting/get_products_with_discount.dspy +++ b/wwwroot/discount_setting/get_products_with_discount.dspy @@ -25,16 +25,14 @@ SELECT dd.id as detail_id, dd.discount, dd.discountid -FROM product p -LEFT JOIN product_category pc ON p.category_id = pc.id +FROM {product_management}.product p +LEFT JOIN {product_management}.product_category pc ON p.category_id = pc.id LEFT JOIN discount_detail dd ON dd.productid = p.id AND dd.discountid = ${discountid}$ -WHERE p.org_id = ${org_id}$ AND p.status = '1' +WHERE p.status = '1' ORDER BY pc.name, p.product_name ''' -ns['org_id'] = user_orgid - db = DBPools() dbname = get_module_dbname('discount') async with db.sqlorContext(dbname) as sor: