diff --git a/json/agreedetail.json b/json/agreedetail.json index 9463e45..66a1641 100644 --- a/json/agreedetail.json +++ b/json/agreedetail.json @@ -7,6 +7,17 @@ }, "editexclouded": [ "id", "agreeid" - ] + ], + "subtables":[ + { + "field":"agreedetailid", + "title":"协议产品", + "params":{ + "agreeid":"${agreeid}", + "prodtypeid":"${prodtypeid}" + }, + "subtable":"agreeproduct" + } + ] } } diff --git a/json/agreeproduct.json b/json/agreeproduct.json index 388bdc2..140f2e0 100644 --- a/json/agreeproduct.json +++ b/json/agreeproduct.json @@ -1,12 +1,13 @@ { "tblname":"agreeproduct", "params":{ + "logined_userorgid":"orgid", "browserfields": { - "exclouded": ["id"], + "exclouded": ["id", "agreedetailid", "resellerpid"], "alters": {} }, "editexclouded": [ - "id" + "id", "agreedetailid", "resellerpid" ] } } diff --git a/json/choose_prodtype.json b/json/choose_prodtype.json new file mode 100644 index 0000000..45b7a06 --- /dev/null +++ b/json/choose_prodtype.json @@ -0,0 +1,22 @@ +{ + "treetype":"singlestruct", + "tblname":"prodtype", + "uitype":"tree", + "alias":"choose_prodtype", + "params":{ + "idField":"id", + "textField":"name", + "editable":true, + "browserfields":{ + "alters":{} + }, + "edit_exclouded_fields":["del_flg", "create_at"], + "checkField":"dd", + "parentField":"parentid", + "toolbar":{ + }, + "binds":[ + ] + } +} + diff --git a/json/prodpricing.json b/json/prodpricing.json new file mode 100644 index 0000000..194d663 --- /dev/null +++ b/json/prodpricing.json @@ -0,0 +1,20 @@ +{ + "tblname":"prodpricing", + "params":{ + "browserfields": { + "exclouded": ["id", "prodid" ], + "alters": { + } + }, + "editexclouded": [ + "id", "prodid" + ], + "subtables":[ + { + "field":"prodpricingid", + "subtable":"prodpricingtab", + "title":"产品定价表" + } + ] + } +} diff --git a/json/prodtypespec.json b/json/prodtypespec.json new file mode 100644 index 0000000..6f538c4 --- /dev/null +++ b/json/prodtypespec.json @@ -0,0 +1,15 @@ +{ + "tblname":"prodtypespec", + "params":{ + "browserfields": { + "exclouded": ["id", "prodtypeid"], + "alters": {} + }, + "data_params":{ + "prodtypeid":"${params_kw.id}" + }, + "editexclouded": [ + "id", "prodtypeid" + ] + } +} diff --git a/json/product.json b/json/product.json index ad68184..ce0cd3a 100644 --- a/json/product.json +++ b/json/product.json @@ -16,7 +16,7 @@ "params":{ "prodtypeid":"${prodtypeid}" }, - "subtable":"prodpricingtab", + "subtable":"prodpricing", "title":"产品定价" } ] diff --git a/json/provide_agree.json b/json/provide_agree.json new file mode 100644 index 0000000..d6b2ffa --- /dev/null +++ b/json/provide_agree.json @@ -0,0 +1,35 @@ +{ + "tblname":"agreement", + "alias":"provide_agree", + "params":{ + "title":"供应协议", + "logined_userorgid":"resellerid", + "browserfields": { + "exclouded": ["id", "resellerid" ], + "alters": { + "providerid":{ + "uitype":"search", + "search_event":"row_selected", + "search_url":"{{entire_url('../select_org')}}", + "valueField":"id", + "textField":"orgname" + } + } + }, + "subtables":[ + { + "title":"协议明细", + "subtable":"agreedetail", + "field":"agreeid" + }, + { + "title":"协议产品", + "subtable":"agreeproduct", + "field":"agreeid" + } + ], + "editexclouded": [ + "id", "resellerid" + ] + } +} diff --git a/json/providing_agree.json b/json/providing_agree.json new file mode 100644 index 0000000..2d23f09 --- /dev/null +++ b/json/providing_agree.json @@ -0,0 +1,20 @@ +{ + "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/json/retail_agree.json b/json/retail_agree.json new file mode 100644 index 0000000..d21e86e --- /dev/null +++ b/json/retail_agree.json @@ -0,0 +1,25 @@ +{ + "tblname":"agreement", + "alias":"retail_agree", + "params":{ + "title":"分销协议", + "sortby":"name", + "logined_userorgid":"providerid", + "logined_userid":"provideruid", + "browserfields": { + "exclouded": ["id", "providerid", "provideruid" ], + "alters": { + "resellerid":{ + "uitype":"search", + "search_event":"row_selected", + "search_url":"{{entire_url('../select_org')}}", + "valueField":"id", + "textField":"orgname" + } + } + }, + "editexclouded": [ + "id", "providerid", "provideruid" + ] + } +} diff --git a/platformbiz/pricing.py b/platformbiz/pricing.py index f18b2a6..844cb01 100644 --- a/platformbiz/pricing.py +++ b/platformbiz/pricing.py @@ -117,19 +117,49 @@ where a.agreeid = b.id raise e return rec -async def get_fact_price(sor, productid, fact_config): - sql = "select * from prodpricingtab where prodid=${productid}$" - recs = await sor.sqlExe(sql, {'productid':productid}) +async def get_unit_value_price(sc, pricingtab): + for pt in pricingtab: + if sc.spec_name == pt.specname and pt.spec_value == pt.specvalue: + return pt.unit_value, pt.unit_amt + return None, None + +async def get_fact_price(sor, productid, spec_config): + """fact_config: + [ + { + spec_name, spec_value, count + } + ] + """ + biz_date = await get_business_date(sor) + sql = """select c.*, +e.name as specname +from product a, prodpricing b, + prodpricingtab c, prodtype d, + prodtypespec e +where a.id=${productid}$ + and a.protypeid = d.id + and e.protypeid = d.id + and a.id = b.prodid + and b.enable_date <= ${biz_date}$ + and b.expire_date > ${biz_date}$ + and c.prodpricingid = b.id + and c.protypespecid = e.id +""" + recs = await sor.sqlExe(sql, {'productid':productid, + 'biz_date':biz_date}) + if len(recs) < 1: - e = Exception(f'{sql=}, {productid=} return not data') + e = Exception(f'{sql=}, {productid=} {biz_date=} return not data') exception(f'{e=}') raise e price = 0.0 - for r in recs: - if r.fact_value is None or r.fact_value == 0: - r.fact_value = 1 - count = fact_config.get(r.fact_name, 0) - price += r.unit_amt * count / r.fact_value + for sc in spec_config: + uv, up = get_unit_value_price(sc, recs) + if uv is None: + continue + cnt = sc.count / uv + price = up * cnt return price async def get_sell_price(sor, sellerid, buyerid, productid, list_price):