From 4fc6f8475c6c71816c2b51a16423d0dd408536fa Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 26 Feb 2025 11:52:06 +0800 Subject: [PATCH] bugfix --- json/agreeproduct.json | 24 +++++++++++++++++++++++- json/provide_agree.json | 7 +------ json/providing_agree.json | 20 -------------------- platformbiz/init.py | 1 + wwwroot/agree_productauth.dspy | 7 +++++++ wwwroot/agreeproduct_auth.dspy | 7 +++++++ 6 files changed, 39 insertions(+), 27 deletions(-) delete mode 100644 json/providing_agree.json create mode 100644 wwwroot/agree_productauth.dspy create mode 100644 wwwroot/agreeproduct_auth.dspy diff --git a/json/agreeproduct.json b/json/agreeproduct.json index 140f2e0..2fce59f 100644 --- a/json/agreeproduct.json +++ b/json/agreeproduct.json @@ -2,8 +2,30 @@ "tblname":"agreeproduct", "params":{ "logined_userorgid":"orgid", + "toolbar":{ + "tools":[ + { + "name":"prodauth", + "label":"授权" + } + ] + }, + "binds":[ + { + "wid":"self", + "event":"prodauth", + "actiontype":"urlwidget", + "target":"PopupWindow", + "options":{ + "url":"{{entire_url('platformbiz/agreeproduct_auth.dspy')}}", + "params":{ + "agreedetailid":"{{params_kw.agreedetailid}}" + } + } + } + ], "browserfields": { - "exclouded": ["id", "agreedetailid", "resellerpid"], + "exclouded": ["id", "agreedetailid"], "alters": {} }, "editexclouded": [ diff --git a/json/provide_agree.json b/json/provide_agree.json index d6b2ffa..f163166 100644 --- a/json/provide_agree.json +++ b/json/provide_agree.json @@ -19,12 +19,7 @@ "subtables":[ { "title":"协议明细", - "subtable":"agreedetail", - "field":"agreeid" - }, - { - "title":"协议产品", - "subtable":"agreeproduct", + "subtable":"provide_agreedetail", "field":"agreeid" } ], diff --git a/json/providing_agree.json b/json/providing_agree.json deleted file mode 100644 index 2d23f09..0000000 --- a/json/providing_agree.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "tblname":"agreement", - "params":{ - "browserfields": { - "exclouded": ["id"], - "alters": { - "resellerid":{ - "uitype":"search", - "search_event":"row_selected", - "search_url":"{{entire_url('../select_org')}}", - "valueField":"id", - "textField":"orgname" - } - } - }, - "editexclouded": [ - "id" - ] - } -} diff --git a/platformbiz/init.py b/platformbiz/init.py index 69d243d..95ac3f3 100644 --- a/platformbiz/init.py +++ b/platformbiz/init.py @@ -2,6 +2,7 @@ from ahserver.serverenv import ServerEnv, get_serverenv from platformbiz.recharge import Recharge from platformbiz.pb_acc import PlatformBizAccRecharge, get_owner_orgid, get_balance from platformbiz.biz_order import change_recharge_status +from platformbiz.pricing import calc_spec_price, get_sell_price def load_platformbiz(): g = ServerEnv() diff --git a/wwwroot/agree_productauth.dspy b/wwwroot/agree_productauth.dspy new file mode 100644 index 0000000..49b3ebf --- /dev/null +++ b/wwwroot/agree_productauth.dspy @@ -0,0 +1,7 @@ +debug(f'{params_kw=}') +db = DBPools() +dbname = await get_module_dbname('platformbiz') +async with db.sqlorContext(dbname) as sor: + await agreedetail_products_clone(params_kw.agreedetailid) + return UiMessage(title='clone product', message='OK') +return UiError(title='Product clone', message='Product clone error') diff --git a/wwwroot/agreeproduct_auth.dspy b/wwwroot/agreeproduct_auth.dspy new file mode 100644 index 0000000..49b3ebf --- /dev/null +++ b/wwwroot/agreeproduct_auth.dspy @@ -0,0 +1,7 @@ +debug(f'{params_kw=}') +db = DBPools() +dbname = await get_module_dbname('platformbiz') +async with db.sqlorContext(dbname) as sor: + await agreedetail_products_clone(params_kw.agreedetailid) + return UiMessage(title='clone product', message='OK') +return UiError(title='Product clone', message='Product clone error')