| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- /**
- *
- * @author: xaboy<365615158@qq.com>
- * @day: 2017/11/11
- */
- namespace app\admin\model\ump;
- use app\admin\model\wechat\WechatUser as UserModel;
- use traits\ModelTrait;
- use basic\ModelBasic;
- /**
- * Class StoreCategory
- * @package app\admin\model\store
- */
- class StoreCouponUser 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['is_fail'] != '') $model = $model->where('status',$where['is_fail']);
- if($where['coupon_title'] != '') $model = $model->where('coupon_title','LIKE',"%$where[coupon_title]%");
- if($where['nickname'] != ''){
- $uid = UserModel::where('nickname','LIKE',"%$where[nickname]%")->column('uid');
- $model = $model->where('uid','IN',implode(',',$uid));
- };
- // $model = $model->where('is_del',0);
- $model = $model->order('id desc');
- return self::page($model,function ($item){
- $item['nickname'] = UserModel::where('uid',$item['uid'])->value('nickname');
- },$where);
- }
- /**
- * 给用户发放优惠券
- * @param $coupon
- * @param $user
- * @return int|string
- */
- public static function setCoupon($coupon,$user){
- $data = array();
- foreach ($user as $k=>$v){
- $data[$k]['cid'] = $coupon['id'];
- $data[$k]['uid'] = $v;
- $data[$k]['coupon_title'] = $coupon['title'];
- $data[$k]['coupon_price'] = $coupon['coupon_price'];
- $data[$k]['use_min_price'] = $coupon['use_min_price'];
- $data[$k]['add_time'] = time();
- $data[$k]['end_time'] = $data[$k]['add_time']+$coupon['coupon_time']*86400;
- }
- $data_num = array_chunk($data,30);
- self::beginTrans();
- $res = true;
- foreach ($data_num as $k=>$v){
- $res = $res && self::insertAll($v);
- }
- self::checkTrans($res);
- return $res;
- }
- /**
- * TODO 恢复优惠券
- * @param $id
- * @return StoreCouponUser|bool
- */
- public static function recoverCoupon($id)
- {
- $status = self::where('id',$id)->value('status');
- if($status) return self::where('id',$id)->update(['status'=>0,'use_time'=>'']);
- else return true;
- }
- }
|