From 4ce0ebf95e4082ce5fa1ca89f05a28cd00f99208 Mon Sep 17 00:00:00 2001 From: P3ngSaM <61768364+P3ngSaM@users.noreply.github.com> Date: Wed, 4 Jan 2023 15:40:34 +0800 Subject: [PATCH] =?UTF-8?q?changes=20=E7=BB=8F=E8=90=A5=E6=80=A7=E7=8E=B0?= =?UTF-8?q?=E9=87=91=E6=B5=81=E9=87=8F=E5=87=80=E9=A2=9D/=E6=80=BB?= =?UTF-8?q?=E5=80=BA=E5=8A=A1=20=E5=8F=82=E6=95=B0=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 基本信用评级指标/偿债能力/经营性现金流净额_总债务.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/基本信用评级指标/偿债能力/经营性现金流净额_总债务.py b/基本信用评级指标/偿债能力/经营性现金流净额_总债务.py index 7fdc01e..33f0e7d 100644 --- a/基本信用评级指标/偿债能力/经营性现金流净额_总债务.py +++ b/基本信用评级指标/偿债能力/经营性现金流净额_总债务.py @@ -8,7 +8,7 @@ router = APIRouter() class Params(BaseModel): - 经营活动产生的现金流量净额: float + 经营性现金流净额: float 短期借款: float 长期借款: float @@ -17,7 +17,7 @@ class Params(BaseModel): def func(p: Params): try: d = p.长期借款 + p.短期借款 - result = p.经营活动产生的现金流量净额 / d * 100 + result = p.经营性现金流净额 / d * 100 return round(result, 2) except ZeroDivisionError: