mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 01:42:45 +08:00
fix: 修正微信V3提现接口参数处理
This commit is contained in:
parent
8c84c053d3
commit
e750ac9cd2
@ -42,12 +42,12 @@ class Transfers extends BasicWePay
|
||||
foreach ($body['transfer_detail_list'] as &$item) if (isset($item['user_name'])) {
|
||||
$item['user_name'] = $this->rsaEncode($item['user_name']);
|
||||
}
|
||||
}
|
||||
if (empty($body['total_num'])) {
|
||||
$body['total_num'] = count($body['transfer_detail_list']);
|
||||
}
|
||||
if (empty($body['total_amount'])) {
|
||||
$body['total_amount'] = array_sum(array_column($body['transfer_detail_list'], 'transfer_amount'));
|
||||
if (empty($body['total_num'])) {
|
||||
$body['total_num'] = count($body['transfer_detail_list']);
|
||||
}
|
||||
if (empty($body['total_amount'])) {
|
||||
$body['total_amount'] = array_sum(array_column($body['transfer_detail_list'], 'transfer_amount'));
|
||||
}
|
||||
}
|
||||
return $this->doRequest('POST', '/v3/transfer/batches', json_encode($body, JSON_UNESCAPED_UNICODE), true);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user