indexcalculation/基本信用评级指标/盈利能力/总资产报酬率.py

29 lines
636 B
Python
Raw 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
期末资产总计: float
期初资产总计: float
# 计算接口
@router.post("/{}".format(INDEX))
def func(p: Params):
try:
d = (p.期末资产总计 + p.期初资产总计) / 2
result = (p.净利润 + p.所得税 + p.利息费用) / d * 100
return round(result, 2)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"