Ingen beskrivning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PayApi.php 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2020-05-22
  12. */
  13. namespace app\user\controller;
  14. use think\Page;
  15. use think\Db;
  16. use think\Config;
  17. use app\user\logic\PayApiLogic;
  18. class PayApi extends Base {
  19. /**
  20. * 构造方法
  21. */
  22. public function __construct(){
  23. parent::__construct();
  24. // 支付API配置
  25. $this->pay_api_config_db = Db::name('pay_api_config');
  26. // 支付API逻辑层
  27. $this->PayApiLogic = new PayApiLogic();
  28. }
  29. // 支付接口列表
  30. public function select_pay_method()
  31. {
  32. $post = input('post.');
  33. /* 订单查询 */
  34. $Order = $this->PayApiLogic->GetFindOrderData($post, true);
  35. /* END */
  36. /* 支付API配置信息查询 */
  37. $Config = $this->PayApiLogic->GetPayApiConfig($post);
  38. $PayInfo = $Config['pay_info'];
  39. /* END */
  40. if (!empty($Config) && 1 == $Config['pay_id'] && 'wechat' == $Config['pay_mark']) {
  41. /*系统内置的微信支付*/
  42. $this->PayApiLogic->UseWeChatPay($post, $Order, $PayInfo);
  43. /* END */
  44. } else if (!empty($Config) && 2 == $Config['pay_id'] && 'alipay' == $Config['pay_mark']) {
  45. /*系统内置的支付宝支付*/
  46. $this->PayApiLogic->UseAliPayPay($post, $Order, $PayInfo);
  47. /* END */
  48. } else if (!empty($Config) && !empty($Config['pay_mark']) && 0 == $Config['system_built']) {
  49. /*第三方插件*/
  50. $ControllerName = "\weapp\\" . $Config['pay_mark']."\controller\\" . $Config['pay_mark'];
  51. $UnifyController = new $ControllerName;
  52. // 虎皮椒支付成功后返回页面,主要用于手机浏览器端、微信端使用虎皮椒支付后页面跳转
  53. if (1 == $post['transaction_type']) {
  54. $UnifiedUrl = url('user/Pay/pay_consumer_details', [], true, true);
  55. } else if (2 == $post['transaction_type']) {
  56. $UnifiedUrl = url('user/Shop/shop_order_details', ['order_id' => $post['unified_id']], [], true, true);
  57. } else if (8 == $post['transaction_type']) {
  58. $UnifiedUrl = cookie($this->users_id . '_' . $Order['product_id'] . '_EyouMediaViewUrl');
  59. } else if (9 == $post['transaction_type']) {
  60. $UnifiedUrl = cookie($this->users_id . '_' . $Order['product_id'] . '_EyouArticleViewUrl');
  61. }else if (10 == $post['transaction_type']) {
  62. $UnifiedUrl = cookie($this->users_id . '_' . $Order['product_id'] . '_EyouDownloadViewUrl');
  63. }
  64. $ReturnUrl = $UnifiedUrl;
  65. $ResultData = $UnifyController->UnifyGetPayAction($PayInfo, $Order, $ReturnUrl);
  66. if (!empty($ResultData)) {
  67. if (isset($ResultData['code']) && empty($ResultData['code'])) {
  68. $this->error($ResultData['msg']);
  69. }
  70. $this->success('订单支付中', $ResultData['url'], $ResultData['data']);
  71. } else {
  72. $this->error('订单异常006,刷新重试');
  73. }
  74. /* END */
  75. }
  76. }
  77. // 订单支付轮询
  78. public function order_pay_polling()
  79. {
  80. if (IS_AJAX_POST) {
  81. $post = input('post.');
  82. /* 订单查询 */
  83. $Order = $this->PayApiLogic->GetFindOrderData($post);
  84. /* END */
  85. // 用于第三套,标记轮询来源于订单提交页
  86. if (isset($post['submit_order_type'])) {
  87. unset($post['submit_order_type']);
  88. }
  89. /* 支付API配置信息查询 */
  90. $Config = $this->PayApiLogic->GetPayApiConfig($post);
  91. $PayInfo = $Config['pay_info'];
  92. /* END */
  93. /* 根据所选的支付方式执行相应操作 */
  94. if (!empty($Config) && 1 == $Config['pay_id'] && 'wechat' == $Config['pay_mark']) {
  95. // 系统内置微信支付---微信支付订单处理
  96. $this->PayApiLogic->WeChatPayProcessing($post, $Order, $PayInfo, $Config);
  97. } else if (!empty($Config) && 2 == $Config['pay_id'] && 'alipay' == $Config['pay_mark']) {
  98. // 系统内置支付宝支付---支付宝支付订单处理
  99. $this->PayApiLogic->AliPayPayProcessing($post, $Order, $PayInfo, $Config);
  100. } else if (!empty($Config) && !empty($Config['pay_mark']) && 0 == $Config['system_built']) {
  101. // 第三方支付
  102. $ControllerName = "\weapp\\" . $Config['pay_mark']."\controller\\" . $Config['pay_mark'];
  103. $UnifyController = new $ControllerName;
  104. $ResultData = $UnifyController->OtherPayProcessing($PayInfo, $post['unified_number'], $post['transaction_type']);
  105. if (is_array($ResultData)) {
  106. // 订单数据更新处理
  107. $ResultData['out_trade_no'] = '';
  108. if (!empty($ResultData['orderId'])) $ResultData['out_trade_no'] = $ResultData['orderId'];
  109. if (!empty($ResultData['out_trade_order'])) $ResultData['out_trade_no'] = $ResultData['out_trade_order'];
  110. $this->PayApiLogic->OrderProcessing($post, $Order, $ResultData, $Config);
  111. } else {
  112. $this->success($ResultData);
  113. }
  114. }
  115. /* END */
  116. }
  117. }
  118. // 购物余额支付(购物+购买视频+购买文章时使用)
  119. public function balance_payment()
  120. {
  121. if (IS_AJAX_POST) {
  122. $post = input('post.');
  123. $post['unified_id'] = intval($post['unified_id']);
  124. if (empty($post['unified_id']) || !is_numeric($post['unified_id'])) {
  125. $this->error('订单异常007,刷新重试');
  126. }
  127. // 视频购买
  128. if (8 == $post['transaction_type']) {
  129. $Data = Db::name('media_order')->find($post['unified_id']);
  130. if (empty($Data)) $this->error('订单异常008,刷新重试');
  131. $ViewUrl = cookie($this->users_id . '_' . $Data['product_id'] . '_EyouMediaViewUrl');
  132. if (in_array($Data['order_status'], [1])) $this->success('订单已支付!即将跳转', $ViewUrl);
  133. if ($this->users['users_money'] >= $Data['order_amount']) {
  134. // 订单更新条件
  135. $OrderWhere = [
  136. 'order_id' => $Data['order_id'],
  137. 'users_id' => $this->users_id,
  138. 'lang' => $this->home_lang
  139. ];
  140. // 订单更新数据,更新为已付款
  141. $post['payment_type'] = '余额支付';
  142. $post['payment_amount'] = $Data['order_amount'];
  143. $OrderData = [
  144. 'order_status' => 1,
  145. 'pay_name' => 'balance',
  146. 'wechat_pay_type' => '',
  147. 'pay_details' => serialize($post),
  148. 'pay_time' => getTime(),
  149. 'update_time' => getTime()
  150. ];
  151. $ResultID = Db::name('media_order')->where($OrderWhere)->update($OrderData);
  152. // 订单更新后续操作
  153. if (!empty($ResultID)) {
  154. $Where = [
  155. 'users_id' => $this->users_id,
  156. 'lang' => $this->home_lang
  157. ];
  158. $UsersData = [
  159. 'users_money' => $this->users['users_money'] - $Data['order_amount'],
  160. 'update_time' => getTime()
  161. ];
  162. Db::name('users')->where($Where)->update($UsersData);
  163. UsersMoneyRecording($Data['order_code'], $this->users, $Data['order_amount'], '视频购买', 3);
  164. // 订单操作完成,返回跳转
  165. $this->success('支付成功,处理订单完成', $ViewUrl);
  166. }
  167. } else {
  168. $url = urldecode(url('user/Pay/pay_account_recharge'));
  169. $this->error('余额不足,请先充值!', $url);
  170. }
  171. }
  172. // 文章购买
  173. else if (9 == $post['transaction_type']) {
  174. $Data = Db::name('article_order')->find($post['unified_id']);
  175. if (empty($Data)) $this->error('订单异常009,刷新重试');
  176. $ViewUrl = cookie($this->users_id . '_' . $Data['product_id'] . '_EyouArticleViewUrl');
  177. if (in_array($Data['order_status'], [1])) $this->success('订单已支付!即将跳转', $ViewUrl);
  178. if ($this->users['users_money'] >= $Data['order_amount']) {
  179. // 订单更新条件
  180. $OrderWhere = [
  181. 'order_id' => $Data['order_id'],
  182. 'users_id' => $this->users_id,
  183. 'lang' => $this->home_lang
  184. ];
  185. // 订单更新数据,更新为已付款
  186. $post['payment_type'] = '余额支付';
  187. $post['payment_amount'] = $Data['order_amount'];
  188. $OrderData = [
  189. 'order_status' => 1,
  190. 'pay_name' => 'balance',
  191. 'wechat_pay_type' => '',
  192. 'pay_details' => serialize($post),
  193. 'pay_time' => getTime(),
  194. 'update_time' => getTime()
  195. ];
  196. $ResultID = Db::name('article_order')->where($OrderWhere)->update($OrderData);
  197. // 订单更新后续操作
  198. if (!empty($ResultID)) {
  199. $Where = [
  200. 'users_id' => $this->users_id,
  201. 'lang' => $this->home_lang
  202. ];
  203. $UsersData = [
  204. 'users_money' => $this->users['users_money'] - $Data['order_amount'],
  205. 'update_time' => getTime()
  206. ];
  207. $users_id = Db::name('users')->where($Where)->update($UsersData);
  208. UsersMoneyRecording($Data['order_code'], $this->users, $Data['order_amount'], '文章购买', 3);
  209. // 订单操作完成,返回跳转
  210. $this->success('支付成功,处理订单完成', $ViewUrl);
  211. }
  212. } else {
  213. $url = urldecode(url('user/Pay/pay_account_recharge'));
  214. $this->error('余额不足,请先充值!', $url);
  215. }
  216. }
  217. // 下载模型购买
  218. else if (10 == $post['transaction_type']) {
  219. $Data = Db::name('download_order')->find($post['unified_id']);
  220. if (empty($Data)) $this->error('订单异常010,刷新重试');
  221. $ViewUrl = cookie($this->users_id . '_' . $Data['product_id'] . '_EyouDownloadViewUrl');
  222. if (in_array($Data['order_status'], [1])) $this->success('订单已支付!即将跳转', $ViewUrl);
  223. if ($this->users['users_money'] >= $Data['order_amount']) {
  224. // 订单更新条件
  225. $OrderWhere = [
  226. 'order_id' => $Data['order_id'],
  227. 'users_id' => $this->users_id,
  228. 'lang' => $this->home_lang
  229. ];
  230. // 订单更新数据,更新为已付款
  231. $post['payment_type'] = '余额支付';
  232. $post['payment_amount'] = $Data['order_amount'];
  233. $OrderData = [
  234. 'order_status' => 1,
  235. 'pay_name' => 'balance',
  236. 'wechat_pay_type' => '',
  237. 'pay_details' => serialize($post),
  238. 'pay_time' => getTime(),
  239. 'update_time' => getTime()
  240. ];
  241. $ResultID = Db::name('download_order')->where($OrderWhere)->update($OrderData);
  242. // 订单更新后续操作
  243. if (!empty($ResultID)) {
  244. $Where = [
  245. 'users_id' => $this->users_id,
  246. 'lang' => $this->home_lang
  247. ];
  248. $UsersData = [
  249. 'users_money' => $this->users['users_money'] - $Data['order_amount'],
  250. 'update_time' => getTime()
  251. ];
  252. Db::name('users')->where($Where)->update($UsersData);
  253. UsersMoneyRecording($Data['order_code'], $this->users, $Data['order_amount'], '下载购买', 3);
  254. // 订单操作完成,返回跳转
  255. $this->success('支付成功,处理订单完成', $ViewUrl);
  256. }
  257. } else {
  258. $url = urldecode(url('user/Pay/pay_account_recharge'));
  259. $this->error('余额不足,请先充值!', $url);
  260. }
  261. }
  262. // 商品购买
  263. else {
  264. $Where = [
  265. 'users_id' => $this->users_id,
  266. 'lang' => $this->home_lang
  267. ];
  268. // 商城商品购买
  269. $OrderWhere = [
  270. 'order_id' => $post['unified_id'],
  271. 'order_code' => $post['unified_number'],
  272. ];
  273. $OrderWhere = array_merge($Where, $OrderWhere);
  274. $orderData = Db::name('shop_order')->field('order_id, order_code, order_amount, order_status, users_id')->where($OrderWhere)->find();
  275. if (empty($orderData)) $this->error('该订单不存在!');
  276. //1已付款(待发货),2已发货(待收货),3已完成(确认收货),-1订单取消(已关闭),4订单过期
  277. $url = urldecode(url('user/Shop/shop_order_details', ['order_id' => $orderData['order_id']]));
  278. if (in_array($orderData['order_status'], [1, 2, 3])) {
  279. $this->success('订单已支付!即将跳转', $url);
  280. } else if ($orderData['order_status'] == 4) {
  281. $this->success('订单已过期!即将跳转', $url);
  282. } else if ($orderData['order_status'] == -1) {
  283. $this->success('订单已关闭!即将跳转', $url);
  284. }
  285. // 订单数据更新处理
  286. if ($this->users['users_money'] < $orderData['order_amount']) {
  287. $url = urldecode(url('user/Pay/pay_account_recharge'));
  288. $this->error('余额不足,若要使用余额支付,请去充值!',$url);
  289. } else {
  290. $ret = Db::name('users')->where($Where)->update([
  291. 'users_money' => Db::raw('users_money-'.$orderData['order_amount']),
  292. 'update_time' => getTime(),
  293. ]);
  294. if (false !== $ret) {
  295. $pay_details = [
  296. 'unified_id' => $orderData['order_id'],
  297. 'unified_number' => $orderData['order_code'],
  298. 'transaction_type' => $post['transaction_type'],
  299. 'payment_amount' => $orderData['order_amount'],
  300. 'payment_type' => "余额支付",
  301. ];
  302. $returnData = pay_success_logic($this->users_id, $orderData['order_code'], $pay_details, 'balance', true, $this->users);
  303. if (is_array($returnData)) {
  304. if (1 == $returnData['code']) {
  305. $this->success($returnData['msg'], $returnData['url'], $returnData['data']);
  306. } else {
  307. $this->error($returnData['msg']);
  308. }
  309. }
  310. }
  311. $this->error('订单支付异常,请刷新后再进行支付!');
  312. }
  313. }
  314. }
  315. }
  316. // 微信支付,获取订单信息并调用微信接口,生成二维码用于扫码支付
  317. public function pay_wechat_png()
  318. {
  319. if (!empty($this->users_id)) {
  320. $unified_number = input('param.unified_number/s');
  321. $transaction_type = input('param.transaction_type/d');
  322. if (in_array($transaction_type, [1,3])) {
  323. // 充值订单 / 会员升级订单
  324. $where = array(
  325. 'users_id' => $this->users_id,
  326. 'order_number' => $unified_number
  327. );
  328. $data = Db::name('users_money')->where($where)->find();
  329. $out_trade_no = $data['order_number'];
  330. $total_fee = $data['money'];
  331. } else if (2 == $transaction_type) {
  332. // 产品购买订单
  333. $where = array(
  334. 'users_id' => $this->users_id,
  335. 'order_code' => $unified_number
  336. );
  337. $data = Db::name('shop_order')->where($where)->find();
  338. $out_trade_no = $data['order_code'];
  339. $total_fee = $data['order_amount'];
  340. } else if (8 == $transaction_type) {
  341. // 视频购买订单
  342. $where = array(
  343. 'users_id' => $this->users_id,
  344. 'order_code' => $unified_number
  345. );
  346. $data = Db::name('media_order')->where($where)->find();
  347. $out_trade_no = $data['order_code'];
  348. $total_fee = $data['order_amount'];
  349. } else if (9 == $transaction_type) {
  350. // 文章购买订单
  351. $where = array(
  352. 'users_id' => $this->users_id,
  353. 'order_code' => $unified_number
  354. );
  355. $data = Db::name('article_order')->where($where)->find();
  356. $out_trade_no = $data['order_code'];
  357. $total_fee = $data['order_amount'];
  358. } else if (99 == intval($transaction_type)) {
  359. // 多商家购买订单
  360. $where = array(
  361. 'users_id' => $this->users_id,
  362. 'unified_number' => $unified_number
  363. );
  364. $data = Db::name('shop_order_unified_pay')->where($where)->find();
  365. $out_trade_no = $data['unified_number'];
  366. $total_fee = $data['unified_amount'];
  367. }else if (10 == $transaction_type) {
  368. // 下载模型购买订单
  369. $where = array(
  370. 'users_id' => $this->users_id,
  371. 'order_code' => $unified_number
  372. );
  373. $data = Db::name('download_order')->where($where)->find();
  374. $out_trade_no = $data['order_code'];
  375. $total_fee = $data['order_amount'];
  376. }
  377. // 调取微信支付链接
  378. $payUrl = model('PayApi')->payForQrcode($out_trade_no, $total_fee, $transaction_type);
  379. // 生成二维码加载在页面上
  380. vendor('wechatpay.phpqrcode.phpqrcode');
  381. $qrcode = new \QRcode;
  382. $pngurl = $payUrl;
  383. $qrcode->png($pngurl);
  384. exit();
  385. } else {
  386. $this->redirect('user/Users/login');
  387. }
  388. }
  389. // 会员升级支付处理
  390. public function users_upgrade_pay()
  391. {
  392. if (IS_AJAX_POST) {
  393. $post = input('post.');
  394. // 判断是否存在支付方式
  395. if (!isset($post['pay_id'])) $this->error('网站支付配置未完善,升级服务暂停使用');
  396. // 处理API标识
  397. $post['pay_mark'] = is_array($post['pay_mark']) ? $post['pay_mark'][$post['pay_id']] : $post['pay_mark'];
  398. // 是否选择产品
  399. if (empty($post['type_id'])) $this->error('请选择购买产品');
  400. // 判断是否可以升级
  401. $this->PayApiLogic->IsAllowUpgrade($post);
  402. if (isset($post['pay_id']) && 0 == $post['pay_id']) {
  403. // 余额支付
  404. $this->PayApiLogic->BalancePayment($post['order_number']);
  405. } else {
  406. // 支付API配置信息查询
  407. $Config = $this->PayApiLogic->GetPayApiConfig($post);
  408. $PayInfo = !empty($Config['pay_info']) ? $Config['pay_info'] : [];
  409. if (!empty($Config) && 1 == $Config['pay_id'] && 'wechat' == $Config['pay_mark']) {
  410. // 系统内置的微信支付
  411. $this->PayApiLogic->WeChatPayment($post, $PayInfo);
  412. } else if (!empty($Config) && 2 == $Config['pay_id'] && 'alipay' == $Config['pay_mark']) {
  413. // 系统内置的支付宝支付
  414. $this->PayApiLogic->AliPayPayment($post, $PayInfo);
  415. } else if (!empty($Config) && !empty($Config['pay_mark']) && 0 == $Config['system_built']) {
  416. // 如果虎皮椒支付则强制执行新增订单并删除原订单号
  417. if ('Hupijiaopay' == $Config['pay_mark']) {
  418. if (!empty($post['order_number'])) {
  419. Db::name('users_money')->where('order_number', $post['order_number'])->delete(true);
  420. }
  421. $post['order_number'] = date('Ymd') . getTime() . rand(10, 100);
  422. $Order = $this->PayApiLogic->GetPayOrderData($post, $PayInfo, $Config['pay_mark']);
  423. $Order['unified_amount'] = $Order['money'];
  424. $Order['unified_number'] = $Order['order_number'];
  425. $Order['transaction_type'] = 3;
  426. } else {
  427. // 订单查询
  428. $Order = $this->PayApiLogic->GetPayOrderData($post, $PayInfo, $Config['pay_mark']);
  429. $Order['unified_amount'] = $Order['money'];
  430. $Order['unified_number'] = $Order['order_number'];
  431. $Order['transaction_type'] = 3;
  432. }
  433. // 第三方插件
  434. $ControllerName = "\weapp\\" . $Config['pay_mark']."\controller\\" . $Config['pay_mark'];
  435. $UnifyController = new $ControllerName;
  436. // 虎皮椒支付成功后返回页面,主要用于手机浏览器端、微信端使用虎皮椒支付后页面跳转
  437. $returnUrl = $_SERVER['REQUEST_SCHEME'] . '://' . request()->host() . url('user/Level/level_centre');
  438. $ResultData = $UnifyController->UnifyGetPayAction($PayInfo, $Order, $returnUrl);
  439. if (!empty($ResultData)) {
  440. if (isset($ResultData['code']) && empty($ResultData['code'])) {
  441. $this->error($ResultData['msg']);
  442. }
  443. $ResultData['data']['pay_id'] = $Config['pay_id'];
  444. $ResultData['data']['pay_mark'] = $Config['pay_mark'];
  445. $ResultData['data']['pay_type'] = $PayInfo['pay_type'];
  446. $ResultData['data']['unified_id'] = $Order['moneyid'];
  447. $ResultData['data']['unified_number'] = $Order['unified_number'];
  448. $this->success('会员升级订单支付中', $ResultData['url'], $ResultData['data']);
  449. } else {
  450. $this->error('会员升级订单异常,刷新重试');
  451. }
  452. }
  453. }
  454. }
  455. }
  456. // 货到付款
  457. public function payOnDelivery()
  458. {
  459. if (IS_AJAX_POST) {
  460. $post = input('post.');
  461. $post['unified_id'] = intval($post['unified_id']);
  462. if (empty($post['unified_id']) || !is_numeric($post['unified_id'])) $this->error('订单支付参数缺失,刷新重试');
  463. // 查询订单信息
  464. $where = [
  465. 'users_id' => $this->users_id,
  466. 'lang' => $this->home_lang,
  467. 'order_id' => $post['unified_id'],
  468. 'order_code' => $post['unified_number'],
  469. ];
  470. $field = 'order_id, order_code, order_amount, order_status, users_id';
  471. $orderData = Db::name('shop_order')->field($field)->where($where)->find();
  472. if (empty($orderData)) $this->error('该订单不存在!');
  473. //1已付款(待发货),2已发货(待收货),3已完成(确认收货),-1订单取消(已关闭),4订单过期
  474. $url = urldecode(url('user/Shop/shop_order_details', ['order_id' => $orderData['order_id']]));
  475. if (in_array($orderData['order_status'], [1, 2, 3])) {
  476. $this->success('订单已支付!即将跳转', $url);
  477. } else if ($orderData['order_status'] == 4) {
  478. $this->success('订单已过期!即将跳转', $url);
  479. } else if ($orderData['order_status'] == -1) {
  480. $this->success('订单已关闭!即将跳转', $url);
  481. }
  482. // 更新订单为已付款
  483. $update = [
  484. 'order_status' => 1,
  485. 'pay_time' => getTime(),
  486. 'wechat_pay_type' => '',
  487. 'update_time' => getTime(),
  488. 'pay_name' => 'delivery_pay',
  489. ];
  490. $result = Db::name('shop_order')->where($where)->update($update);
  491. if (!empty($result)) {
  492. // 再次添加一条订单操作记录
  493. AddOrderAction($post['unified_id'], $this->users_id, 0, 1, 0, 1, '货到付款', '会员选择货到付款,款项由快递代收');
  494. // 邮箱发送
  495. $returnData['email'] = GetEamilSendData(tpCache('smtp'), $this->users, $orderData, 1, 'delivery_pay');
  496. // 手机发送
  497. $returnData['mobile'] = GetMobileSendData(tpCache('sms'), $this->users, $orderData, 1, 'delivery_pay');
  498. // 发送站内信给后台
  499. $orderData['pay_method'] = '货到付款';
  500. SendNotifyMessage($orderData, 5, 1, 0);
  501. // 订单支付通知
  502. $params = [
  503. 'users_id' => $this->users_id,
  504. 'result_id' => $post['unified_id'],
  505. ];
  506. eyou_send_notice(9, $params);
  507. // 返回提示
  508. $this->success('订单提交成功', urldecode(url('user/Shop/shop_centre')), $returnData);
  509. }
  510. }
  511. }
  512. }