mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
fix: 微信 V3 提现增加自动统计金额
This commit is contained in:
parent
d05f53e548
commit
c102bfa331
@ -46,6 +46,9 @@ class Transfers extends BasicWePay
|
|||||||
if (empty($body['total_num'])) {
|
if (empty($body['total_num'])) {
|
||||||
$body['total_num'] = count($body['transfer_detail_list']);
|
$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);
|
return $this->doRequest('POST', '/v3/transfer/batches', json_encode($body, JSON_UNESCAPED_UNICODE), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user