indexcalculation/基本信用评级指标/盈利能力/毛利率.py

25 lines
486 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
@router.post("/{}".format(INDEX))
def func(p: Params):
try:
d = p.营业收入 - p.营业成本
result = d / p.营业收入 * 100
return round(result, 6)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"