WxpayH5.php 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. <?php
  2. /*
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace fecshop\services\payment;
  10. //use fecshop\models\mysqldb\IpnMessage;
  11. use fecshop\services\Service;
  12. use yii\base\InvalidConfigException;
  13. use Yii;
  14. use Monolog\Handler\IFTTTHandler;
  15. /**
  16. * Payment wxpay services.
  17. * @author Alex Chang<1692576541@qq.com>
  18. * @since 1.0
  19. */
  20. class WxpayH5 extends Service
  21. {
  22. public $devide;
  23. public $configFile;
  24. public $subjectMaxLength = 30;
  25. public $tradeType;
  26. public $scanCodeBody = '微信H5支付';
  27. public $deviceInfo = 'WEB';
  28. public $expireTime = 600;
  29. protected $_order;
  30. // 允许更改的订单状态,不存在这里面的订单状态不允许修改
  31. protected $_allowChangOrderStatus;
  32. public function init()
  33. {
  34. ini_set('date.timezone', 'Asia/Shanghai');
  35. parent::init();
  36. $wxpayConfigFile = Yii::getAlias($this->configFile);
  37. if (!is_file($wxpayConfigFile)) {
  38. throw new InvalidConfigException('wxpay config file:['.$wxpayConfigFile.'] is not exist');
  39. }
  40. $appId = Yii::$app->store->get('payment_wxpay', 'wechat_service_app_id');
  41. $appSecret = Yii::$app->store->get('payment_wxpay', 'wechat_service_app_secret');
  42. $mchKey = Yii::$app->store->get('payment_wxpay', 'merchant_key');
  43. $mchId = Yii::$app->store->get('payment_wxpay', 'merchant_mch_id');
  44. define('WX_APP_ID', $appId);
  45. define('WX_APP_SECRET', $appSecret);
  46. define('WX_MCH_KEY', $mchKey);
  47. define('WX_MCH_ID', $mchId);
  48. //echo $appId;exit;
  49. require_once($wxpayConfigFile);
  50. $wxpayApiFile = Yii::getAlias('@fecshop/lib/wxpay/lib/WxPay.Api.php');
  51. //$wxpayDataFile = Yii::getAlias('@fecshop/lib/wxpay/lib/WxPay.Data.php');
  52. $wxpayNotifyFile = Yii::getAlias('@fecshop/lib/wxpay/lib/WxPay.Notify.php');
  53. //$wxpayExceptionFile = Yii::getAlias('@fecshop/lib/wxpay/lib/WxPay.Exception.php');
  54. $wxpayJsApiPayPayFile = Yii::getAlias('@fecshop/lib/wxpay/example/WxPay.JsApiPay.php');
  55. //$wxpayNativePayFile = Yii::getAlias('@fecshop/lib/wxpay/example/WxPay.NativePay.php');
  56. $wxpayLogFile = Yii::getAlias('@fecshop/lib/wxpay/example/log.php');
  57. require_once($wxpayApiFile);
  58. //require_once($wxpayDataFile);
  59. require_once($wxpayNotifyFile);
  60. //require_once($wxpayExceptionFile);
  61. require_once($wxpayJsApiPayPayFile);
  62. require_once($wxpayLogFile);
  63. //交易类型
  64. //JSAPI--公众号支付、NATIVE--原生扫码支付、APP--app支付,统一下单接口trade_type的传参可参考这里
  65. //MICROPAY--刷卡支付,刷卡支付有单独的支付接口,不调用统一下单接口
  66. $this->tradeType = 'MWEB';
  67. $this->_allowChangOrderStatus = [
  68. Yii::$service->order->payment_status_pending,
  69. Yii::$service->order->payment_status_processing,
  70. ];
  71. }
  72. /**
  73. * 接收IPN消息的url,接收微信支付的异步消息,进而更改订单状态。
  74. */
  75. public function ipn()
  76. {
  77. $notifyFile = Yii::getAlias('@fecshop/services/payment/wxpay/notify.php');
  78. require_once($notifyFile);
  79. \Yii::info('begin ipn', 'fecshop_debug');
  80. $notify = new \PayNotifyCallBack();
  81. $notify->Handle(false);
  82. }
  83. /**
  84. * @param $data | Array 数据格式如下:
  85. * array(18) {
  86. * ["appid"]=> string(18) "wx426b3015555a46be"
  87. * ["attach"]=>string(24) "微信支付测试产品"
  88. * ["bank_type"]=>string(3) "CFT"
  89. * ["cash_fee"]=>string(1) "1"
  90. * ["device_info"]=>string(3) "WEB"
  91. * ["fee_type"]=> string(3) "CNY"
  92. * ["is_subscribe"]=>string(1) "N"
  93. * ["mch_id"]=>string(10) "1900009851"
  94. * ["nonce_str"]=> string(32) "e91xn1hwgyw9ox5zecdag1l86vrhi94l"
  95. * ["openid"]=>string(28) "oHZx6uKw5nrwZmEfgIX8poeQIucw"
  96. * ["out_trade_no"]=>string(10) "1100000953"
  97. * ["result_code"]=>string(7) "SUCCESS"
  98. * ["return_code"]=>string(7) "SUCCESS"
  99. * ["sign"]=>string(32) "589AC2046E667584FF1967C3C091259A"
  100. * ["time_end"]=>string(14) "20171106160124"
  101. * ["total_fee"]=>string(1) "1"
  102. * ["trade_type"]=>string(6) "NATIVE"
  103. * ["transaction_id"]=>string(28) "4200000006201711062859872774"
  104. * }
  105. * 在微信sdk验证数据安全性后,会执行该函数,用来验证订单的金额的正确性
  106. * 如果订单数据没有问题,则更改订单状态。
  107. */
  108. public function ipnUpdateOrder($data)
  109. {
  110. \Yii::info('ipn order process', 'fecshop_debug');
  111. $incrementId = $data['out_trade_no'];
  112. $transaction_id = $data['transaction_id'];
  113. $total_fee = $data['total_fee'];
  114. $fee_type = $data['fee_type'];
  115. if ($incrementId && $transaction_id && $total_fee) {
  116. $this->_order = Yii::$service->order->getByIncrementId($incrementId);
  117. Yii::$service->payment->setPaymentMethod($this->_order['payment_method']);
  118. $base_grand_total = $this->_order['base_grand_total'];
  119. $order_total_amount = Yii::$service->page->currency->getCurrencyPrice($base_grand_total, 'CNY');
  120. \Yii::info('check order totla amouont['.($order_total_amount * 100).' == '.$total_fee.']', 'fecshop_debug');
  121. // 微信支付的人民币单位为分
  122. if(bccomp($order_total_amount * 100, $total_fee) !== 0){
  123. return false;
  124. }
  125. \Yii::info('updateOrderInfo', 'fecshop_debug');
  126. // 更改订单状态
  127. if ($this->updateOrderInfo($incrementId, $transaction_id, false)) { //支付成功调用服务执行订单状态改变,清空购物车和发送邮件操作
  128. \Yii::info('updateOrderInfo Success', 'fecshop_debug');
  129. return true;
  130. }
  131. }
  132. }
  133. public function getOpenidUrl($baseUrl)
  134. {
  135. $tools = new \JsApiPay();
  136. return $tools->GetOpenidUrl($baseUrl);
  137. }
  138. function postXmlCurl($xml,$url,$second = 30){
  139. $ch = curl_init();
  140. //设置超时
  141. curl_setopt($ch, CURLOPT_TIMEOUT, $second);
  142. curl_setopt($ch,CURLOPT_URL, $url);
  143. curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
  144. curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
  145. //设置 header
  146. curl_setopt($ch, CURLOPT_HEADER, FALSE);
  147. //要求结果为字符串且输出到屏幕上
  148. curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
  149. //post 提交方式
  150. curl_setopt($ch, CURLOPT_POST, TRUE);
  151. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
  152. //运行 curl
  153. $data = curl_exec($ch);
  154. //返回结果
  155. if($data){
  156. curl_close($ch);
  157. return $data;
  158. }else{
  159. $error = curl_errno($ch);
  160. curl_close($ch);
  161. echo "curl 出错,错误码:$error"."<br>";
  162. }
  163. }
  164. /**
  165. * @param $code | string 传递的微信code
  166. */
  167. public function getScanCodeStart($code = "")
  168. {
  169. // 根据订单得到json格式的微信支付参数。
  170. $trade_info = $this->getStartBizContentAndSetPaymentMethod();
  171. if (!$trade_info) {
  172. Yii::$service->helper->errors->add('generate wxpay bizContent error');
  173. return false;
  174. }
  175. $money= $trade_info['total_amount'] * 100; //微信支付的单位为分,所以要乘以100; //充值金额 微信支付单位为分
  176. $userip = Yii::$service->helper->getCustomerIp();; //获得用户设备 IP
  177. $appid = \WxPayConfig::APPID ; //应用 APPID
  178. $mch_id = \WxPayConfig::MCHID; //微信支付商户号
  179. $key = \WxPayConfig::KEY; //微信商户 API 密钥
  180. $out_trade_no = $trade_info['increment_id'];//平台内部订单号
  181. $nonce_str = Yii::$service->helper->createNoncestr();//随机字符串
  182. $body = $this->scanCodeBody;//内容
  183. $total_fee = $money; //金额
  184. $spbill_create_ip = $userip; //IP
  185. $notify_url = Yii::$service->payment->getStandardIpnUrl(); //回调地址
  186. $trade_type = $this->tradeType;//交易类型 具体看 API 里面有详细介绍
  187. //$scene_info ='{"h5_info":{"type":"Wap","wap_url":"http://qq52o.me","wap_name":"支付"}}';//场景信息 必要参数
  188. //echo $openId;exit;
  189. $wap_url = Yii::$service->url->homeUrl();
  190. $scene_info ='{"h5_info":{"type":"Wap","wap_url":"'.$wap_url.'","wap_name":"'.$this->scanCodeBody.'"}}';//场景信息 必要参数
  191. $signA ="appid=$appid&attach=$out_trade_no&body=$body&mch_id=$mch_id&nonce_str=$nonce_str&notify_url=$notify_url&out_trade_no=$out_trade_no&scene_info=$scene_info&spbill_create_ip=$spbill_create_ip&total_fee=$total_fee&trade_type=$trade_type";
  192. $strSignTmp = $signA."&key=$key"; //拼接字符串 注意顺序微信有个测试网址 顺序按照他的来 直接点下面的校正测试 包括下面 XML 是否正确
  193. $sign = strtoupper(MD5($strSignTmp)); // MD5 后转换成大写
  194. $post_data = "<xml>
  195. <appid>$appid</appid>
  196. <mch_id>$mch_id</mch_id>
  197. <body>$body</body>
  198. <out_trade_no>$out_trade_no</out_trade_no>
  199. <total_fee>$total_fee</total_fee>
  200. <spbill_create_ip>$spbill_create_ip</spbill_create_ip>
  201. <notify_url>$notify_url</notify_url>
  202. <trade_type>$trade_type</trade_type>
  203. <scene_info>$scene_info</scene_info>
  204. <attach>$out_trade_no</attach>
  205. <nonce_str>$nonce_str</nonce_str>
  206. <sign>$sign</sign>
  207. </xml>";//拼接成 XML 格式
  208. $url = "https://api.mch.weixin.qq.com/pay/unifiedorder";//微信传参地址
  209. $dataxml = $this->postXmlCurl($post_data,$url); //后台 POST 微信传参地址 同时取得微信返回的参数
  210. $objectxml = (array)simplexml_load_string($dataxml, 'SimpleXMLElement', LIBXML_NOCDATA); //将微信返回的 XML 转换成数组
  211. return $objectxml;
  212. /*
  213. // 根据订单得到json格式的微信支付参数。
  214. $trade_info = $this->getStartBizContentAndSetPaymentMethod();
  215. if (!$trade_info) {
  216. Yii::$service->helper->errors->add('generate wxpay bizContent error');
  217. return false;
  218. }
  219. $client_ip = Yii::$service->helper->getCustomerIp();
  220. //①、获取用户openid
  221. $tools = new \JsApiPay();
  222. if (!$code) {
  223. $openId = $tools->GetOpenid();
  224. } else {
  225. $openId = $tools->GetOpenidByCode($code);
  226. }
  227. //echo $openId;exit;
  228. $wap_url = Yii::$service->url->homeUrl();
  229. $wap_name = '微信H5支付';
  230. $scene_info ='{"h5_info":{"type":"Wap","wap_url":"'.$wap_url.'","wap_name":"'.wap_name.'"}}';//场景信息 必要参数
  231. //②、统一下单
  232. $input = new \WxPayUnifiedOrder();
  233. //$notify_url = Yii::$service->url->getUrl("payment/wxpayjsapi/ipn"); ////获取支付配置中的返回ipn url
  234. $notify_url = Yii::$service->payment->getStandardIpnUrl();
  235. //$notify = new \NativePay();
  236. //$input = new \WxPayUnifiedOrder();
  237. $input->SetBody($this->scanCodeBody);
  238. //$input->SetAttach("商店的额外的自定义数据");
  239. $input->SetAttach($trade_info['subject']);
  240. $input->SetDevice_info($this->deviceInfo); // 设置设备号
  241. if ($trade_info['coupon_code']) {
  242. $input->SetGoods_tag($trade_info['coupon_code']); //设置商品标记,代金券或立减优惠功能的参数
  243. }
  244. $input->SetOut_trade_no($trade_info['increment_id']); // Fecshop 订单号
  245. $orderTotal = $trade_info['total_amount'] * 100; //微信支付的单位为分,所以要乘以100
  246. $input->SetTotal_fee($orderTotal);
  247. $input->SetTime_start(date("YmdHis"));
  248. $input->SetTime_expire($this->getShangHaiExpireTime($this->expireTime));
  249. $input->SetNotify_url($notify_url); //通知地址 改成自己接口通知的接口,要有公网域名,测试时直接行动此接口会产生日志
  250. $input->SetTrade_type($this->tradeType);
  251. $input->SetSpbill_create_ip($client_ip);
  252. $input->SetSceneInfo($scene_info);
  253. $input->SetProduct_id($trade_info['product_ids']); //此为二维码中包含的商品ID
  254. //$input->SetOpenid($openId);
  255. //var_dump($input);
  256. $result = \WxPayApi::wapUnifiedOrder($input);
  257. return $result;
  258. */
  259. }
  260. //打印输出数组信息
  261. function printf_info($data)
  262. {
  263. foreach($data as $key=>$value){
  264. echo "<font color='#00ff55;'>$key</font> : $value <br/>";
  265. }
  266. }
  267. public function getShangHaiExpireTime($expire_time)
  268. {
  269. $timezone_out = date_default_timezone_get();
  270. date_default_timezone_set('Asia/Shanghai');
  271. $r_time = date("YmdHis", time() + $expire_time);
  272. date_default_timezone_set($timezone_out);
  273. return $r_time;
  274. }
  275. public function scanCodeCheckTradeIsSuccess($out_trade_no)
  276. {
  277. $result = Yii::$service->payment->wxpay->queryOrderByOut($out_trade_no);
  278. if (is_array($result) && !empty($result)) {
  279. $trade_state = $result['trade_state']; //最终的交易状态,必须为SUCCESS才是交易成功
  280. $return_code = $result['result_code'];
  281. $trade_type = $result['trade_type']; //获取交易方式,这里使用的是扫码支付native
  282. $out_trade_no = $result['out_trade_no'];
  283. $total_amount = $result['total_fee'];
  284. $seller_id = $result['mch_id'];
  285. $auth_app_id = $result['appid'];
  286. $trade_no = $result['transaction_id'];
  287. $checkOrderStatus = Yii::$service->payment->wxpay->checkOrder($trade_state, $return_code, $trade_type, $out_trade_no, $total_amount, $seller_id, $auth_app_id);
  288. if ($checkOrderStatus) {
  289. return $this->updateOrderInfo($out_trade_no, $trade_no);
  290. }
  291. }
  292. }
  293. /**
  294. * 通过微信接口查询交易信息
  295. * @param unknown $out_trade_no
  296. */
  297. public function queryOrderByOut($out_trade_no)
  298. {
  299. $input = new \WxPayOrderQuery();
  300. $input->SetOut_trade_no($out_trade_no);
  301. $result = \WxPayApi::orderQuery($input);
  302. return $result;
  303. }
  304. /**
  305. * 把返回的支付参数方式改成数组以适应微信的api
  306. * 生成二维码图片会用到这个函数
  307. */
  308. protected function getStartBizContentAndSetPaymentMethod()
  309. {
  310. $currentOrderInfo = Yii::$service->order->getCurrentOrderInfo();
  311. if (isset($currentOrderInfo['products']) && is_array($currentOrderInfo['products'])) {
  312. $subject_arr = [];
  313. foreach ($currentOrderInfo['products'] as $product) {
  314. $subject_arr[] = $product['name'];
  315. }
  316. if (!empty($subject_arr)) {
  317. $subject = implode(',', $subject_arr);
  318. // 字符串太长会出问题,这里将产品的name链接起来,在截图一下
  319. if (strlen($subject) > $this->subjectMaxLength) {
  320. $subject = mb_substr($subject, 0, $this->subjectMaxLength);
  321. }
  322. //echo $subject;
  323. $increment_id = $currentOrderInfo['increment_id'];
  324. $base_grand_total = $currentOrderInfo['base_grand_total'];
  325. $total_amount = Yii::$service->page->currency->getCurrencyPrice($base_grand_total, 'CNY');
  326. Yii::$service->payment->setPaymentMethod($currentOrderInfo['payment_method']);
  327. $products = $currentOrderInfo['products'];
  328. $productIds = '';
  329. if (is_array($products)) {
  330. foreach ($products as $product) {
  331. $productIds = $product['product_id'];
  332. break;
  333. }
  334. }
  335. return [
  336. 'increment_id' => $increment_id,
  337. 'total_amount' => $total_amount,
  338. 'subject' => $subject,
  339. 'coupon_code' => $currentOrderInfo['coupon_code'],
  340. 'product_ids' => $productIds,
  341. ];
  342. }
  343. }
  344. }
  345. /**
  346. * 检查订单是否合法
  347. * 如果每项验证都通过则返回真
  348. */
  349. public function checkOrder($trade_state, $return_code, $trade_type, $out_trade_no, $total_amount, $seller_id, $auth_app_id)
  350. {
  351. if ($trade_state != 'SUCCESS') {
  352. Yii::$service->helper->errors->add('request trade_state is not equle to SUCCESS');
  353. return false;
  354. }
  355. if ($return_code != 'SUCCESS') {
  356. Yii::$service->helper->errors->add('request return_code is not equle to SUCCESS');
  357. return false;
  358. }
  359. if ($trade_type != 'NATIVE') {
  360. Yii::$service->helper->errors->add('request trade_type is not equle to NATIVE');
  361. return false;
  362. }
  363. if (!$this->_order) {
  364. $this->_order = Yii::$service->order->getByIncrementId($out_trade_no);
  365. Yii::$service->payment->setPaymentMethod($this->_order['payment_method']);
  366. }
  367. if (!$this->_order) {
  368. Yii::$service->helper->errors->add('order increment id:{out_trade_no} is not exist.', ['out_trade_no' => $out_trade_no]);
  369. return false;
  370. }
  371. $base_grand_total = $this->_order['base_grand_total'];
  372. $order_total_amount = Yii::$service->page->currency->getCurrencyPrice($base_grand_total, 'CNY');
  373. if ((string)($order_total_amount * 100) != $total_amount) { //由于微信中是以分为单位所以必须乘以100,二维码页面也已经作了处理,单位都是分,$order_total_amount * 100要转为字符串再比较
  374. Yii::$service->helper->errors->add('order increment id:{out_trade_no} , total_amount({total_amount}) is not equal to order_total_amount({order_total_amount})', ['out_trade_no'=>$out_trade_no , 'total_amount'=>$total_amount , 'order_total_amount'=>$order_total_amount ]);
  375. //return ['o' => $order_total_amount * 100, 't' => $total_amount]; //测试时便于观察订单金额和微信实际支付的金额,生产环境要注释掉
  376. return false;
  377. }
  378. return true;
  379. }
  380. /**
  381. * 微信 支付成功后,对订单的状态进行修改
  382. * 如果支付成功,则修改订单状态为支付成功状态。
  383. * @param $out_trade_no | string , fecshop的订单编号 increment_id
  384. * @param $trade_no | 微信支付交易号
  385. * @param isClearCart | boolean 是否清空购物车
  386. *
  387. */
  388. protected function updateOrderInfo($out_trade_no, $trade_no, $isClearCart=true)
  389. {
  390. if (!empty($out_trade_no) && !empty($trade_no)) {
  391. if ($this->paymentSuccess($out_trade_no, $trade_no)) {
  392. // 清空购物车
  393. if ($isClearCart) {
  394. Yii::$service->cart->clearCartProductAndCoupon();
  395. }
  396. return true;
  397. }
  398. } else {
  399. Yii::$service->helper->errors->add('wxpay payment fail,resultCode: {result_code}', ['result_code' => $resultCode]);
  400. return false;
  401. }
  402. }
  403. /**
  404. * @param $increment_id | String 订单号
  405. * @param $sendEmail | boolean 是否发送邮件
  406. * 订单支付成功后,需要更改订单支付状态等一系列的处理。
  407. */
  408. protected function paymentSuccess($increment_id, $trade_no, $sendEmail = true)
  409. {
  410. if (!$this->_order) {
  411. $this->_order = Yii::$service->order->getByIncrementId($increment_id);
  412. Yii::$service->payment->setPaymentMethod($this->_order['payment_method']);
  413. }
  414. // 【优化后的代码 ##】
  415. $orderstatus = Yii::$service->order->payment_status_confirmed;
  416. $updateArr['order_status'] = $orderstatus;
  417. $updateArr['txn_id'] = $trade_no; // 微信的交易号
  418. $updateColumn = $this->_order->updateAll(
  419. $updateArr,
  420. [
  421. 'and',
  422. ['order_id' => $this->_order['order_id']],
  423. ['in','order_status',$this->_allowChangOrderStatus]
  424. ]
  425. );
  426. if (!empty($updateColumn)) {
  427. // 发送邮件,以及其他的一些操作(订单支付成功后的操作)
  428. Yii::$service->order->orderPaymentCompleteEvent($this->_order['increment_id']);
  429. }
  430. // 【优化后的代码 ##】
  431. /* 注释掉的原来代码,上面进行了优化,保证更改只有一次,这样发邮件也就只有一次了
  432. // 如果订单状态已经是processing,那么,不需要更改订单状态了。
  433. if ($this->_order['order_status'] == Yii::$service->order->payment_status_confirmed){
  434. return true;
  435. }
  436. $order = $this->_order;
  437. if (isset($order['increment_id']) && $order['increment_id']) {
  438. // 如果支付成功,则更改订单状态为支付成功
  439. $order->order_status = Yii::$service->order->payment_status_confirmed;
  440. $order->txn_id = $trade_no; // 微信的交易号
  441. // 更新订单信息
  442. $order->save();
  443. Yii::$service->order->orderPaymentCompleteEvent($order['increment_id']);
  444. // 得到当前的订单信息
  445. // $orderInfo = Yii::$service->order->getOrderInfoByIncrementId($order['increment_id']);
  446. // 发送新订单邮件
  447. // Yii::$service->email->order->sendCreateEmail($orderInfo);
  448. return true;
  449. }
  450. */
  451. return true;
  452. }
  453. // 支付宝的 标示
  454. public function getWxpayHandle()
  455. {
  456. return 'wxpay_standard';
  457. }
  458. }