修正退款订单号非字符串问题
This commit is contained in:
parent
b9a22ea667
commit
dd01d8fe2d
@ -179,7 +179,7 @@ class OrderService extends BaseService
|
|||||||
|
|
||||||
$options = array();
|
$options = array();
|
||||||
$options['transaction_id'] = $order['escrow_trade_no'];
|
$options['transaction_id'] = $order['escrow_trade_no'];
|
||||||
$options['out_refund_no'] = $refund_no;
|
$options['out_refund_no'] = (string)$refund_no;
|
||||||
$options['reason'] = $refund_reason;
|
$options['reason'] = $refund_reason;
|
||||||
$options['amount'] = [
|
$options['amount'] = [
|
||||||
'refund' => (int)round($order['payment_amount_total'] * 100),
|
'refund' => (int)round($order['payment_amount_total'] * 100),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user