fix: 微信 V3 提现增加自动统计金额

This commit is contained in:
邹景立 2024-08-04 23:01:24 +08:00
parent d05f53e548
commit c102bfa331

View File

@ -46,6 +46,9 @@ class Transfers extends BasicWePay
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);
}