修复查询存款失败用户整数类型错误问题
This commit is contained in:
parent
3e75cb6ef6
commit
c8a93cf96a
@ -215,7 +215,7 @@ def get_pay_record_detail(account: Account, member: MemberList, date: str) -> Op
|
|||||||
"endDate": date
|
"endDate": date
|
||||||
}
|
}
|
||||||
res = api_request.account_post(PAY_RECORD_LIST_URL, account=account, params=params)
|
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 member.name
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user