creditrating-wcq/IndexCalculation/基本信用评级指标/盈利能力/平均资本回报率.py

26 lines
658 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from fastapi import APIRouter
from pydantic import BaseModel
INDEX = "平均资本回报率(%"
router = APIRouter()
class Params(BaseModel):
净利润: float
本期末所有者权益_含少数股东权益: float
上期末所有者权益_含少数股东权益: float
@router.post("/{}".format(INDEX))
def func(p: Params):
try:
d = (p.本期末所有者权益_含少数股东权益 + p.上期末所有者权益_含少数股东权益) / 2
result = p.净利润 / d * 100
return round(result, 2)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"