From 95dc5fd1f8c731586ebbbf981c1f2afc3feefe4d Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 25 Feb 2025 21:34:59 +0800 Subject: [PATCH] bugfix --- platformbiz/pricing.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platformbiz/pricing.py b/platformbiz/pricing.py index 844cb01..9e0c785 100644 --- a/platformbiz/pricing.py +++ b/platformbiz/pricing.py @@ -123,7 +123,7 @@ async def get_unit_value_price(sc, pricingtab): return pt.unit_value, pt.unit_amt return None, None -async def get_fact_price(sor, productid, spec_config): +async def calc_prod_price(sor, productid, spec_config): """fact_config: [ { @@ -131,7 +131,7 @@ async def get_fact_price(sor, productid, spec_config): } ] """ - biz_date = await get_business_date(sor) + biz_date = await get_biz_date(sor) sql = """select c.*, e.name as specname from product a, prodpricing b, @@ -216,7 +216,7 @@ where a.id = ${productid}$ } elif prod.pricing_mode == '1': # 按资源因子计费 - list_price = await get_fact_price(sor, productid, prod_config) + list_price = await calc_prod_price(sor, productid, prod_config) sell_price = await get_sell_price(sor, sellerid, buyerid, productid, list_price) pricing_info = { 'sellerid': sellerid,