indexcalculation/基本信用评级指标/运营效率/应收账款周转率.py

30 lines
689 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
m = (p.期初应收票据 + p.期末应收票据) / 2
result = p.营业收入 / (d + m)
return round(result, 6)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"