creditrating/BM02_指标计算/财务杠杆/剔除预收款后的资产负债率.py

27 lines
568 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:
m = p.负债合计 - p.合同负债
d = p.资产总计 - p.合同负债
result = m / d * 100
return round(result, 2)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"