This commit is contained in:
yumoqing 2025-12-16 10:49:44 +08:00
parent 55058d0403
commit 067b69d8db

View File

@ -68,7 +68,7 @@ class RechargeBiz(PFBiz):
# await sor.C('recharge_log', self.recharge_log.copy()) # await sor.C('recharge_log', self.recharge_log.copy())
async def recharge_accounting(sor, customerid, action, orderid, async def recharge_accounting(sor, customerid, action, orderid,
transdate, recharge_amt, recharge_fee): transdate, recharge_amt, recharge_feerate):
""" """
summary:recharge channe(handly, wechat, alipay) summary:recharge channe(handly, wechat, alipay)
""" """
@ -81,7 +81,7 @@ async def recharge_accounting(sor, customerid, action, orderid,
"transdate":transdate, "transdate":transdate,
"orderid":orderid, "orderid":orderid,
"recharge_amt":recharge_amt, "recharge_amt":recharge_amt,
"recharge_fee": recharge_fee, "recharge_feerate": recharge_feerate,
"action":action, "action":action,
} }
ra = RechargeBiz(recharge_log) ra = RechargeBiz(recharge_log)