修复查询存款失败用户整数类型错误问题

This commit is contained in:
zayac 2024-06-05 12:48:00 +08:00
parent 3e75cb6ef6
commit c8a93cf96a

View File

@ -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 ""