| | <?php |
| | namespace app\common\model; |
| | use think\Db; |
| |
|
| | class Card extends Base { |
| | |
| | protected $name = 'card'; |
| |
|
| | |
| | protected $createTime = ''; |
| | protected $updateTime = ''; |
| |
|
| | |
| | protected $auto = []; |
| | protected $insert = []; |
| | protected $update = []; |
| |
|
| | public function getCardUseStatusTextAttr($val,$data) |
| | { |
| | $arr = [0=>lang('not_used'),1=>lang('used')]; |
| | return $arr[$data['card_use_status']]; |
| | } |
| |
|
| | public function getCardSaleStatusTextAttr($val,$data) |
| | { |
| | $arr = [0=>lang('not_sale'),1=>lang('sold')]; |
| | return $arr[$data['card_sale_status']]; |
| | } |
| |
|
| | public function listData($where,$order,$page,$limit=20) |
| | { |
| | $page = $page > 0 ? (int)$page : 1; |
| | $limit = $limit ? (int)$limit : 20; |
| | $total = $this->where($where)->count(); |
| | $list = Db::name('Card')->where($where)->order($order)->page($page)->limit($limit)->select(); |
| | foreach($list as $k=>$v){ |
| | if($v['user_id'] >0){ |
| | $user = model('User')->infoData(['user_id'=>$v['user_id']]); |
| | $list[$k]['user'] = $user['info']; |
| | } |
| | } |
| | return ['code'=>1,'msg'=>lang('data_list'),'page'=>$page,'pagecount'=>ceil($total/$limit),'limit'=>$limit,'total'=>$total,'list'=>$list]; |
| | } |
| |
|
| | public function infoData($where,$field='*') |
| | { |
| | if(empty($where) || !is_array($where)){ |
| | return ['code'=>1001,'msg'=>lang('param_err')]; |
| | } |
| | $info = $this->field($field)->where($where)->find(); |
| |
|
| | if(empty($info)){ |
| | return ['code'=>1002,'msg'=>lang('obtain_err')]; |
| | } |
| | $info = $info->toArray(); |
| |
|
| | return ['code'=>1,'msg'=>lang('obtain_ok'),'info'=>$info]; |
| | } |
| |
|
| | public function saveData($data) |
| | { |
| | $validate = \think\Loader::validate('Card'); |
| | if(!$validate->check($data)){ |
| | return ['code'=>1001,'msg'=>lang('param_err').':'.$validate->getError() ]; |
| | } |
| |
|
| | if(!empty($data['card_id'])){ |
| | $where=[]; |
| | $where['card_id'] = ['eq',$data['card_id']]; |
| | $res = $this->allowField(true)->where($where)->update($data); |
| | } |
| | else{ |
| | $data['card_add_time'] = time(); |
| | $res = $this->allowField(true)->insert($data); |
| | } |
| | if(false === $res){ |
| | return ['code'=>1002,'msg'=>lang('save_err').':'.$this->getError() ]; |
| | } |
| | return ['code'=>1,'msg'=>lang('save_ok')]; |
| | } |
| |
|
| | public function saveAllData($num,$money,$point,$role_no,$role_pwd) |
| | { |
| | $data=[]; |
| | $t = time(); |
| | for($i=1;$i<=$num;$i++){ |
| | $card_no = mac_get_rndstr(16,$role_no); |
| | $card_pwd = mac_get_rndstr(8,$role_pwd); |
| |
|
| | $data[$card_no] = ['card_no'=>$card_no,'card_pwd'=>$card_pwd,'card_money'=>$money,'card_points'=>$point,'card_add_time'=>$t]; |
| | } |
| | $data = array_values($data); |
| | $res = $this->allowField(true)->insertAll($data); |
| | if(false === $res){ |
| | return ['code'=>1002,'msg'=>lang('save_err').':'.$this->getError() ]; |
| | } |
| | return ['code'=>1,'msg'=>lang('save_ok')]; |
| | } |
| |
|
| |
|
| | public function delData($where) |
| | { |
| | $res = $this->where($where)->delete(); |
| | if($res===false){ |
| | return ['code'=>1001,'msg'=>lang('del_err').':'.$this->getError() ]; |
| | } |
| | return ['code'=>1,'msg'=>lang('del_ok')]; |
| | } |
| |
|
| | public function fieldData($where,$col,$val) |
| | { |
| | if(!isset($col) || !isset($val)){ |
| | return ['code'=>1001,'msg'=>lang('param_err')]; |
| | } |
| |
|
| | $data = []; |
| | $data[$col] = $val; |
| | $res = $this->allowField(true)->where($where)->update($data); |
| | if($res===false){ |
| | return ['code'=>1001,'msg'=>lang('set_err').':'.$this->getError() ]; |
| | } |
| | return ['code'=>1,'msg'=>lang('set_ok')]; |
| | } |
| |
|
| | public function useData($card_no,$card_pwd,$user_info) |
| | { |
| | if (empty($card_no) || empty($card_pwd) || empty($user_info)) { |
| | return ['code' => 1001, 'msg'=>lang('param_err')]; |
| | } |
| |
|
| | $where=[]; |
| | $where['card_no'] = ['eq',$card_no]; |
| | $where['card_pwd'] = ['eq',$card_pwd]; |
| | |
| | $where['card_use_status'] = ['eq',0]; |
| |
|
| | $info = $this->where($where)->find(); |
| | if(empty($info)){ |
| | return ['code' => 1002, 'msg' =>lang('model/card/not_found')]; |
| | } |
| |
|
| | $where2=[]; |
| | $where2['user_id'] = $user_info['user_id']; |
| | $res = model('User')->where($where2)->setInc('user_points',$info['card_points']); |
| | if($res===false){ |
| | return ['code' => 1003, 'msg' =>lang('model/card/update_user_points_err')]; |
| | } |
| | |
| | $data = []; |
| | $data['user_id'] = $user_info['user_id']; |
| | $data['plog_type'] = 1; |
| | $data['plog_points'] = $info['card_points']; |
| | $result = model('Plog')->saveData($data); |
| |
|
| | $update=[]; |
| | $update['card_sale_status'] = 1; |
| | $update['card_use_status'] = 1; |
| | $update['card_use_time'] = time(); |
| | $update['user_id'] = $user_info['user_id']; |
| | $res = $this->where($where)->update($update); |
| | if($res === false){ |
| | return ['code' => 1004, 'msg' =>lang('model/card/update_card_status_err')]; |
| | } |
| |
|
| | return ['code' => 1, 'msg' => lang('model/card/used_card_ok',[$info['card_points']])]; |
| | } |
| | } |