Crontab.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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\api\controller;
  15. use app\api\controller\Base;
  16. use think\Db;
  17. use think\Model;
  18. /**
  19. * 定时任务管理类
  20. * Class Member
  21. */
  22. class Crontab extends Base
  23. {
  24. public function task(){
  25. //活动性质是一天的自动下架,是每天的更新名额,库存,销量
  26. $field = 'id,number,nature';
  27. $activity_list = Db::name('store_goods')->field($field)->where('status',1)->where('is_deleted',0)->select();
  28. if(empty($activity_list)){
  29. return false;
  30. }
  31. foreach ($activity_list as $value){
  32. if($value['nature'] == 1){ //仅限一天(下架活动)
  33. Db::name('store_goods')->where('id',$value['id'])->update(array('status'=>0,'update_at'=>date('Y-m-d H:i:s')));
  34. }else{
  35. Db::name('store_goods')->where('id',$value['id'])->update(array('number_sales'=>0,'number_stock'=>$value['number'],'is_sell_out'=>0,'update_at'=>date('Y-m-d H:i:s')));
  36. }
  37. }
  38. }
  39. //立即报名后24内不上传凭证则为取消
  40. public function cancel_apply(){
  41. $apply_list = Db::name('store_apply_list')->field('id,create_at')->where('product_images',null)->where('status',0)->select();
  42. if(empty($apply_list)){
  43. return true;
  44. }
  45. foreach ($apply_list as $value){
  46. if(time() - 86400 >= strtotime($value['create_at'])){
  47. Db::name('store_apply_list')->where('id',$value['id'])->update(array('status'=>4));
  48. }
  49. }
  50. }
  51. }