shish 1 år sedan
förälder
incheckning
8bfe96c88a

+ 1 - 1
biz-hd/cg/classes/CgRefundClass.php

@@ -275,7 +275,7 @@ class CgRefundClass extends BaseClass
                     'orderSn' => $orderSn,
                     'refundAmount' => $refundFee,
                     'refundReason' => $refundReason,
-                    'thirdNo' => $transaction_id,
+                    'thirdNo' => $transaction_id,//这个参数必传,不然聚合收银合支付宝付款的退款不会成功
                 ];
                 $response = $laResource->refund($aliParams);
                 if (!isset($response['code']) || $response['code'] != 'BBS00000') {

+ 1 - 1
biz-hd/refund/services/HdRefundService.php

@@ -267,7 +267,7 @@ class HdRefundService extends BaseService
                     'orderSn' => $myOrderSn,
                     'refundAmount' => $refundFee,
                     'refundReason' => $refundReason,
-                    'thirdNo' => $thirdNo,
+                    'thirdNo' => $thirdNo,//这个参数必传,不然聚合收银合支付宝付款的退款不会成功
                 ];
                 $response = $laResource->refund($refundParams);
                 if (!isset($response['code']) || $response['code'] != 'BBS00000') {

+ 1 - 0
common/components/lakala/Lakala.php

@@ -287,6 +287,7 @@ class Lakala
         $refundSn = $params['refundSn'];
         $refundReason = $params['refundReason'];
         $refundAmount = $params['refundAmount'];
+        //这个参数必传,不然聚合收银合支付宝付款的退款不会成功
         $thirdNo = $params['thirdNo'] ?? '';
         $ip = $this->getClientIp();
         $location_info = ['request_ip' => $ip];