indexcalculation/基本信用评级指标/运营效率/期间费用率.py

28 lines
572 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
# 计算接口
@router.post("/{}".format(INDEX))
def func(p: Params):
try:
d = p.财务费用 + p.管理费用 + p.销售费用
result = d / p.营业收入 * 100
return round(result, 2)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"