CronShopClose.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. // +---------------------------------------------------------------------+
  3. // | NiuCloud | [ WE CAN DO IT JUST NiuCloud ]  |
  4. // +---------------------------------------------------------------------+
  5. // | Copy right 2019-2029 www.niucloud.com  |
  6. // +---------------------------------------------------------------------+
  7. // | Author | NiuCloud <niucloud@outlook.com>  |
  8. // +---------------------------------------------------------------------+
  9. // | Repository | https://github.com/niucloud/framework.git  |
  10. // +---------------------------------------------------------------------+
  11. declare (strict_types = 1);
  12. namespace app\event;
  13. use app\model\shop\Shop;
  14. use think\facade\Db;
  15. use think\facade\Log;
  16. /**
  17. * 店铺自动关闭(每日执行一次)
  18. */
  19. class CronShopClose
  20. {
  21. // 行为扩展的执行入口必须是run
  22. public function handle($param = [])
  23. {
  24. $shop_model = new Shop();
  25. $now_time = time();
  26. $condition = array(
  27. ["shop_status", "=", 1],
  28. ["expire_time", "exp", Db::raw('<= '.$now_time.' and expire_time != 0')],
  29. );
  30. $shop_list_result = $shop_model->getShopList($condition,"site_id");
  31. if(!empty($shop_list_result["data"])){
  32. $shop_list = $shop_list_result["data"];
  33. foreach($shop_list as $k => $v){
  34. $shop_model->shopClose($v["site_id"]);
  35. }
  36. }
  37. }
  38. }