Timedtask.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. namespace app\api\controller;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. use AlibabaCloud\Client\Exception\ClientException;
  5. use AlibabaCloud\Client\Exception\ServerException;
  6. use think\Db;
  7. /**
  8. * @title 定时任务
  9. * Class Timedtask
  10. * @controller Timedtask
  11. * @group base
  12. */
  13. class Timedtask
  14. {
  15. /**
  16. * @title 会员优惠券过期
  17. * @desc 会员优惠券过期
  18. * @author qc
  19. * @url /api/Timedtask/userCouponOver
  20. * @method GET
  21. */
  22. public function userCouponOver()
  23. {
  24. user_coupon_over();
  25. }
  26. /**
  27. * @title 取消订单定时任务
  28. * @desc 十五分钟内未支付的自动取消
  29. * @author qc
  30. * @url /api/Timedtask/goodsOrder
  31. * @method GET
  32. */
  33. public function goodsOrder()
  34. {
  35. $sel_time = time() - 300;// 五分钟内未支付的自动取消
  36. $order_data = Db::table('goods_order')
  37. ->where('create_at','< time',date('Y-m-d H:i:s',$sel_time))
  38. ->where('status','=',0)
  39. ->where('cancel_state','=',0)
  40. ->select();
  41. foreach ($order_data as $order_info) {
  42. Db::startTrans();
  43. try {
  44. Db::table('goods_order')->where(['id'=>$order_info['id']])
  45. ->update(['status'=>9,'cancel_state'=>1,'cancel_at'=>date('Y-m-d H:i:s'),'cancel_desc'=>'支付超时!自动取消']);
  46. Db::table('store_goods')->where('id', $order_info['goods_id'])
  47. ->setInc('stock', $order_info['goods_num']);
  48. Db::commit();
  49. }catch (\Exception $e){
  50. Db::rollback();
  51. }
  52. }
  53. }
  54. /**
  55. * @title 分解魔玩柜
  56. * @desc 十五分钟内未支付的自动取消
  57. * @author qc
  58. * @url /api/Timedtask/resolveMagic
  59. * @method GET
  60. */
  61. public function resolveMagic(){
  62. resolve_magic();
  63. }
  64. }