Commit b2b6eec6 by dong

fix20230111

parent 8426dd38
......@@ -1291,7 +1291,7 @@ def get_data():
sign_money = 0
else:
sign_money = sum([project_obj.investment_volume / 10000 for project_obj in project_obj_list])
data.update({"value": sign_money})
data.update({"value": round(sign_money, 2)})
# 签约完成率
rate = round(sign_money / target, 2) if target and target != 0 else 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment