/** * * 撤销订单API接口,WxPayReverse中参数out_trade_no和transaction_id必须填写一个 * appid、mchid、spbill_create_ip、nonce_str不需要填入 * @param WxPayReverse $inputObj * @param int $timeOut * @throws WxPayException */ public static function reverse($inputObj, $timeOut = 6) { // $url = "https://api.mch.weixin.qq.com/secapi/pay/reverse"; $url = WxPayConfig::REVERSE_ORDER_URL; // 检测必填参数 if (!$inputObj->IsOut_trade_noSet() && !$inputObj->IsTransaction_idSet()) { throw new WxPayException("撤销订单API接口中,参数out_trade_no和transaction_id必须填写一个!"); } // $inputObj->SetAppid(WxPayConfig::APPID);//公众账号ID $inputObj->SetAppid(WxPayConfig::$appId); $inputObj->SetMch_id(WxPayConfig::$mchId); //商户号 $inputObj->SetNonce_str(self::getNonceStr()); //随机字符串 $inputObj->SetSign(); //签名 $xml = $inputObj->ToXml(); $startTimeStamp = self::getMillisecond(); //请求开始时间 $response = self::postXmlCurl($xml, $url, true, $timeOut); $result = WxPayResults::Init($response); self::reportCostTime($url, $startTimeStamp, $result); //上报请求花费时间 return $result; }
/** * * 撤销订单,如果失败会重复调用10次 * @param string $out_trade_no * @param 调用深度 $depth */ public function cancel($out_trade_no, $depth = 0) { if ($depth > 10) { return false; } $clostOrder = new WxPayReverse(); $clostOrder->SetOut_trade_no($out_trade_no); $result = WxPayApi::reverse($clostOrder); //接口调用失败 if ($result["return_code"] != "SUCCESS") { return false; } //如果结果为success且不需要重新调用撤销,则表示撤销成功 if ($result["result_code"] != "SUCCESS" && $result["recall"] == "N") { return true; } else { if ($result["recall"] == "Y") { return $this->cancel($out_trade_no, ++$depth); } } return false; }