| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- *
- * @author: xaboy<365615158@qq.com>
- * @day: 2017/11/11
- */
- namespace app\admin\model\ump;
- use traits\ModelTrait;
- use basic\ModelBasic;
- /**
- * Class StoreCategory
- * @package app\admin\model\store
- */
- class StoreCoupon extends ModelBasic
- {
- use ModelTrait;
- /**
- * @param $where
- * @return array
- */
- public static function systemPage($where){
- $model = new self;
- if($where['status'] != '') $model = $model->where('status',$where['status']);
- if($where['title'] != '') $model = $model->where('title','LIKE',"%$where[title]%");
- // if($where['is_del'] != '') $model = $model->where('is_del',$where['is_del']);
- $model = $model->where('is_del',0);
- $model = $model->order('sort desc,id desc');
- return self::page($model,$where);
- }
- /**
- * @param $where
- * @return array
- */
- public static function systemPageCoupon($where){
- $model = new self;
- if($where['status'] != '') $model = $model->where('status',$where['status']);
- if($where['title'] != '') $model = $model->where('title','LIKE',"%$where[title]%");
- // if($where['is_del'] != '') $model = $model->where('is_del',$where['is_del']);
- $model = $model->where('is_del',0);
- $model = $model->where('status',1);
- $model = $model->order('sort desc,id desc');
- return self::page($model,$where);
- }
- public static function editIsDel($id){
- $data['status'] = 0;
- self::beginTrans();
- $res1 = self::edit($data,$id);
- $res2 = false !== StoreCouponUser::where('cid',$id)->setField('is_fail',1);
- $res3 = false !== StoreCouponIssue::where('cid',$id)->setField('status',-1);
- $res = $res1 && $res2 && $res3;
- self::checkTrans($res);
- return $res;
- }
- }
|