From c8a93cf96a5c8490949e896dc851c7959e5fcf59 Mon Sep 17 00:00:00 2001 From: zayac Date: Wed, 5 Jun 2024 12:48:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=9F=A5=E8=AF=A2=E5=AD=98?= =?UTF-8?q?=E6=AC=BE=E5=A4=B1=E8=B4=A5=E7=94=A8=E6=88=B7=E6=95=B4=E6=95=B0?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E9=94=99=E8=AF=AF=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entity/pay_record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entity/pay_record.py b/src/entity/pay_record.py index cd4e31a..4ef658d 100644 --- a/src/entity/pay_record.py +++ b/src/entity/pay_record.py @@ -215,7 +215,7 @@ def get_pay_record_detail(account: Account, member: MemberList, date: str) -> Op "endDate": date } res = api_request.account_post(PAY_RECORD_LIST_URL, account=account, params=params) - if int(res.data['orderAmountTotal']) > 0 and int(res.data['scoreAmountTotal']) == 0: + if float(res.data['orderAmountTotal']) > 0 and float(res.data['scoreAmountTotal']) == 0: return member.name return ""