AutoRun.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\command;
  15. use think\console\Command;
  16. use think\console\Input;
  17. use think\console\Output;
  18. use think\Db;
  19. use think\db\exception\DataNotFoundException;
  20. use think\db\exception\ModelNotFoundException;
  21. use think\Exception;
  22. use think\exception\DbException;
  23. use think\exception\PDOException;
  24. use We;
  25. /**
  26. * 商城数据处理指令
  27. * Class AutoRun
  28. * @package app\store\command
  29. */
  30. class AutoRun extends Command
  31. {
  32. /**
  33. * 配置指令信息
  34. */
  35. protected function configure()
  36. {
  37. $this->setName('xclean:store')->setDescription('[清理]检查并处理商城任务');
  38. }
  39. /**
  40. * 业务指令执行
  41. * @param Input $input
  42. * @param Output $output
  43. * @throws Exception
  44. * @throws DataNotFoundException
  45. * @throws ModelNotFoundException
  46. * @throws DbException
  47. * @throws PDOException
  48. */
  49. protected function execute(Input $input, Output $output)
  50. {
  51. // 自动取消30分钟未支付的订单
  52. $this->autoCancelOrder();
  53. // 清理一天前未支付的订单
  54. $this->autoRemoveOrder();
  55. // 订单自动退款处理
  56. // $this->autoRefundOrder();
  57. // 提现自动打款处理
  58. // $this->autoTransfer();
  59. }
  60. /**
  61. * 自动取消30分钟未支付的订单
  62. * @throws Exception
  63. * @throws PDOException
  64. */
  65. private function autoCancelOrder()
  66. {
  67. $datetime = $this->getDatetime('store_order_wait_time');
  68. $where = [['status', 'in', ['1', '2']], ['pay_state', 'eq', '0'], ['create_at', '<', $datetime]];
  69. $count = Db::name('StoreOrder')->where($where)->update([
  70. 'status' => '0',
  71. 'cancel_state' => '1',
  72. 'cancel_at' => date('Y-m-d H:i:s'),
  73. 'cancel_desc' => '30分钟未完成支付自动取消订单',
  74. ]);
  75. if ($count > 0) {
  76. $this->output->info("共计自动取消了30分钟未支付的{$count}笔订单!");
  77. } else {
  78. $this->output->comment('没有需要自动取消30分钟未支付的订单记录!');
  79. }
  80. }
  81. /**
  82. * 清理一天前未支付的订单
  83. * @throws Exception
  84. * @throws DataNotFoundException
  85. * @throws ModelNotFoundException
  86. * @throws DbException
  87. * @throws PDOException
  88. */
  89. private function autoRemoveOrder()
  90. {
  91. $datetime = $this->getDatetime('store_order_clear_time');
  92. $where = [['status', 'eq', '0'], ['pay_state', 'eq', '0'], ['create_at', '<', $datetime]];
  93. $list = Db::name('StoreOrder')->where($where)->limit(20)->select();
  94. if (count($orderNos = array_unique(array_column($list, 'order_no'))) > 0) {
  95. $this->output->info("自动删除前一天已经取消的订单:" . PHP_EOL . join(',' . PHP_EOL, $orderNos));
  96. Db::name('StoreOrder')->whereIn('order_no', $orderNos)->delete();
  97. Db::name('StoreOrderList')->whereIn('order_no', $orderNos)->delete();
  98. } else {
  99. $this->output->comment('没有需要自动删除前一天已经取消的订单!');
  100. }
  101. }
  102. /**
  103. * 订单自动退款操作
  104. * @throws Exception
  105. * @throws DataNotFoundException
  106. * @throws ModelNotFoundException
  107. * @throws DbException
  108. * @throws PDOException
  109. */
  110. private function autoRefundOrder()
  111. {
  112. // 未完成退款的订单,执行微信退款操作
  113. foreach (Db::name('StoreOrder')->where(['refund_state' => '1'])->select() as $order) try {
  114. $this->output->writeln("正在为 {$order['order_no']} 执行退款操作...");
  115. $result = We::WePayRefund(config('wechat.wxpay'))->create([
  116. 'transaction_id' => $order['pay_no'],
  117. 'out_refund_no' => $order['refund_no'],
  118. 'total_fee' => $order['price_total'] * 100,
  119. 'refund_fee' => $order['pay_price'] * 100,
  120. 'refund_account' => 'REFUND_SOURCE_UNSETTLED_FUNDS',
  121. ]);
  122. if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
  123. Db::name('StoreOrder')->where(['order_no' => $order['order_no']])->update([
  124. 'refund_state' => '2', 'refund_desc' => '自动退款成功!',
  125. ]);
  126. } else {
  127. Db::name('StoreOrder')->where(['order_no' => $order['order_no']])->update([
  128. 'refund_desc' => isset($result['err_code_des']) ? $result['err_code_des'] : '自动退款失败',
  129. ]);
  130. }
  131. } catch (\Exception $e) {
  132. $this->output->writeln("订单 {$order['order_no']} 执行退款失败,{$e->getMessage()}!");
  133. Db::name('StoreOrder')->where(['order_no' => $order['order_no']])->update(['refund_desc' => $e->getMessage()]);
  134. }
  135. $this->output->writeln('自动检测退款订单执行完成!');
  136. }
  137. /**
  138. * 自动企业打款操作
  139. * @throws Exception
  140. * @throws DataNotFoundException
  141. * @throws ModelNotFoundException
  142. * @throws DbException
  143. * @throws PDOException
  144. */
  145. private function autoTransfer()
  146. {
  147. # 批量企业打款
  148. foreach (Db::name('StoreProfitUsed')->where(['status' => '1'])->select() as $vo) try {
  149. $wechat = We::WePayTransfers(config('wechat.wxpay'));
  150. $result = $wechat->create([
  151. 'partner_trade_no' => $vo['trs_no'],
  152. 'openid' => $vo['openid'],
  153. 'check_name' => 'NO_CHECK',
  154. 'amount' => $vo['pay_price'] * 100,
  155. 'desc' => '营销活动拥金提现',
  156. 'spbill_create_ip' => '127.0.0.1',
  157. ]);
  158. if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
  159. Db::name('StoreProfitUsed')->where(['trs_no' => $vo['trs_no']])->update([
  160. 'status' => '2', 'pay_desc' => '拥金提现成功!', 'pay_no' => $result['payment_no'], 'pay_at' => date('Y-m-d H:i:s'),
  161. ]);
  162. } else {
  163. Db::name('StoreProfitUsed')->where(['trs_no' => $vo['trs_no']])->update([
  164. 'pay_desc' => isset($result['err_code_des']) ? $result['err_code_des'] : '自动打款失败', 'last_at' => date('Y-m-d H:i:s'),
  165. ]);
  166. }
  167. } catch (\Exception $e) {
  168. $this->output->writeln("订单 {$vo['trs_no']} 执行提现失败,{$e->getMessage()}!");
  169. Db::name('StoreProfitUsed')->where(['trs_no' => $vo['trs_no']])->update(['pay_desc' => $e->getMessage()]);
  170. }
  171. }
  172. /**
  173. * 获取配置时间
  174. * @param string $code
  175. * @return string
  176. * @throws Exception
  177. * @throws PDOException
  178. */
  179. private function getDatetime($code)
  180. {
  181. $minutes = intval(sysconf($code) * 60);
  182. return date('Y-m-d H:i:s', strtotime("-{$minutes} minutes"));
  183. }
  184. }