From d60bef4ecb77a0d533d2e7c62935ca8f6f2cea9e Mon Sep 17 00:00:00 2001 From: Zhao Zuohong Date: Sun, 3 Sep 2023 08:24:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=AE=A1=E7=AE=97=E5=8D=95?= =?UTF-8?q?=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/riic_report_analysis.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/riic_report_analysis.py b/apps/riic_report_analysis.py index ea0f977..53898dd 100644 --- a/apps/riic_report_analysis.py +++ b/apps/riic_report_analysis.py @@ -182,7 +182,7 @@ class RIICReportAnalysis: balanced_exp = exp_avg + more_exp lmb_exp_ratio = (lmb_avg + external_lmb) / (balanced_exp + external_exp) total = (lmb_avg * 0.2 + gold_avg * 0.8 + exp_avg + 4000) / 10000 - gongsun = (lmb_avg * 1.6 + exp_avg) / 10000 + gongsun = (lmb_avg * 0.8 + gold_avg * 0.8 + exp_avg + 4000) / 10000 kaltsit = math.ceil((lmb_avg + gold_avg + exp_avg) / 10000) stupid = (lmb_avg + exp_avg) / 10000 @@ -194,10 +194,10 @@ class RIICReportAnalysis: output += f"钱书比例:{lmb_exp_ratio:.2f}\n\n" output += "======产能======\n" - output += f"{total:.1f}E\n" - output += f"{gongsun:.1f}公\n" - output += f"{kaltsit:.0f}凯\n" - output += f"{stupid:.1f}友\n" + output += f"{total:.2f}E(0.2订单+0.8赤金+经验+4000)\n" + output += f"{gongsun:.2f}公(0.8订单+0.8赤金+经验+4000)\n" + output += f"{kaltsit:.0f}凯(订单+赤金+经验向上取整到万)\n" + output += f"{stupid:.1f}友(订单+经验)\n" await chain.onebot_reply(Text(output.strip())) except Exception as e: