zhangguidong 2 år sedan
förälder
incheckning
c8e504d461
1 ändrade filer med 4 tillägg och 1 borttagningar
  1. 4 1
      application/api/controller/Writeoff.php

+ 4 - 1
application/api/controller/Writeoff.php

@@ -178,7 +178,7 @@ class Writeoff extends Api
     }
     public function refund_order($amount,$order_no,$type)
     {
-        print_r($amount);print_r($order_no);print_r($type);die;
+
 
         try {
             if ($type == 'wechat') {
@@ -203,8 +203,11 @@ class Writeoff extends Api
 
                 $result = $alipay->refund($order);
             }
+            print_r($result);
             return true;
+
         } catch (GatewayException $e) {
+            print_r($e);
             return false;
         }
     }