123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\api\controller;
- use app\api\controller\Base;
- use think\Db;
- use think\Model;
- /**
- * 定时任务管理类
- * Class Member
- */
- class Crontab extends Base
- {
- public function task(){
- //活动性质是一天的自动下架,是每天的更新名额,库存,销量
- $field = 'id,number,nature';
- $activity_list = Db::name('store_goods')->field($field)->where('status',1)->where('is_deleted',0)->select();
- if(empty($activity_list)){
- return false;
- }
- foreach ($activity_list as $value){
- if($value['nature'] == 1){ //仅限一天(下架活动)
- Db::name('store_goods')->where('id',$value['id'])->update(array('status'=>0,'update_at'=>date('Y-m-d H:i:s')));
- }else{
- 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')));
- }
- }
- }
- //立即报名后24内不上传凭证则为取消
- public function cancel_apply(){
- $apply_list = Db::name('store_apply_list')->field('id,create_at')->where('product_images',null)->where('status',0)->select();
- if(empty($apply_list)){
- return true;
- }
- foreach ($apply_list as $value){
- if(time() - 86400 >= strtotime($value['create_at'])){
- Db::name('store_apply_list')->where('id',$value['id'])->update(array('status'=>4));
- }
- }
- }
- }
|