AutoRun.php 7.9 KB

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