zhangguidong 2 years ago
parent
commit
7f88c4cccb
1 changed files with 52 additions and 1 deletions
  1. 52 1
      app/data/controller/api/business/Order.php

+ 52 - 1
app/data/controller/api/business/Order.php

@@ -190,6 +190,8 @@ class Order  extends Controller
             'reason.default'=>'',
         ]);
         $info = ShopOrder::mk()->where(['id'=>$data['order_id'],'admin_id'=>$admnd_id['id'],'status'=>7])->find();
+        $pay_money  = ShopOrderPay::mk()->where(['status' => 1, $info['payment_trade']])->value('money');
+
         if(empty($info)){
             $this->error('订单信息有误');
         }
@@ -197,7 +199,12 @@ class Order  extends Controller
            // 退款操作
             if($data['type']==1){
                 //同意退款
-                $result = json_decode($this->refund_order($info['payment_trade'],$info['refund_money']),true);
+                if($info['payment_type']=='支付宝支付') {
+                    $result = json_decode($this->refund_order($info['payment_trade'], $info['refund_money']), true);
+                }
+                if($info['payment_type']=='微信支付') {
+                    $result = json_decode($this->wxrefund_order($info['payment_trade'], $info['refund_money'],$pay_money), true);
+                }
                 if($result) {
                     ShopOrder::mk()->where(['id' => $data['order_id'], 'admin_id' => $admnd_id['id']])->save(['status' => 8, 'refund_status' => 2, 'dk_time' => date('Y-m-d H:i:s')]);
                     $this->success('已同意退款,支付金额原路退回');
@@ -251,6 +258,50 @@ class Order  extends Controller
         }
     }
 
+    public function wxrefund_order(){
+        $pay_no='3';
+            $money='2';
+                $pay_money ='1';
+        $config = [
+            'appid' => 'wxa5033cf91977e574', // APP APPID
+            'app_id' => '', // 公众号 APPID
+            'miniapp_id' => '', // 小程序 APPID
+            'mch_id' => '1634830915',
+            'key' => '7aa3fg0htful8nttb135rnusbvmeggbi',
+            'notify_url' => '',
+            'cert_client' => 'https://ship-expert.zhousi.hdlkeji.com/cert/apiclient_cert.pem', // optional, 退款,红包等情况时需要用到
+            'cert_key' => 'https://ship-expert.zhousi.hdlkeji.com/cert/apiclient_key.pem',// optional, 退款,红包等情况时需要用到
+            'log' => [ // optional
+                'file' => './logs/wechat.log',
+                'level' => 'info', // 建议生产环境等级调整为 info,开发环境为 debug
+                'type' => 'single', // optional, 可选 daily.
+                'max_file' => 30, // optional, 当 type 为 daily 时有效,默认 30 天
+            ],
+            'http' => [ // optional
+                'timeout' => 5.0,
+                'connect_timeout' => 5.0,
+                // 更多配置项请参考 [Guzzle](https://guzzle-cn.readthedocs.io/zh_CN/latest/request-options.html)
+            ],
+            // 'mode' => 'dev',
+        ];
+        print_r($config);
+
+        try{
+            $order = [
+                'out_trade_no' => $pay_no,
+                'out_refund_no' => time(),
+                'total_fee' => $pay_money,
+                'refund_fee' => $money,
+                'refund_desc' => '退款',
+            ];
+
+            Pay::wechat($config)->refund($order); // 返回 `Yansongda\Supports\Collection` 实例,可以通过 `$result->xxx` 访问服务器返回的数据。
+            return true;
+        }
+        catch(GatewayException $e){
+            return false;
+        }
+    }
     /**
      * @Title ("立即发货")
      * @Method ("post")