update
This commit is contained in:
parent
18f668d668
commit
ee0df23a11
@ -291,10 +291,10 @@ async def daily_partner_settlement():
|
||||
platform_profit_sharing = community.community_profit_sharing.platform_rate
|
||||
|
||||
# 计算运营商分成金额
|
||||
partner_profit = round(stat.total_final_amount * (float(partner_profit_sharing)) / 100, 2)
|
||||
admin_profit = round(stat.total_final_amount * (float(admin_profit_sharing) / 100), 2)
|
||||
delivery_profit = round(stat.total_final_amount * (float(delivery_profit_sharing) / 100), 2)
|
||||
platform_profit = stat.total_final_amount * (float(platform_profit_sharing) / 100)
|
||||
partner_profit = round(stat.total_original_amount * (float(partner_profit_sharing)) / 100, 2)
|
||||
admin_profit = round(stat.total_original_amount * (float(admin_profit_sharing) / 100), 2)
|
||||
delivery_profit = round(stat.total_original_amount * (float(delivery_profit_sharing) / 100), 2)
|
||||
platform_profit = stat.total_original_amount * (float(platform_profit_sharing) / 100)
|
||||
|
||||
# 结算明细
|
||||
settle_details = {
|
||||
|
||||
BIN
jobs.sqlite
BIN
jobs.sqlite
Binary file not shown.
Loading…
Reference in New Issue
Block a user