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

26 lines
513 B
Python
Raw Normal View History

2022-12-30 09:28:54 +08:00
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 "计算错误"