indexcalculation/基本信用评级指标/运营效率/经调整的存货周转率.py

26 lines
567 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
# 计算接口
@router.post("/{}".format(INDEX))
def func(p: Params):
try:
result = p.销售商品提供劳务收到的现金 / (p.存货 - p.合同负债)
return round(result, 6)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"