123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\admin\model\wechat;
- use app\admin\model\order\StoreOrder;
- use app\admin\model\order\StoreOrderStatus;
- use app\admin\model\user\User;
- use app\admin\model\user\UserExtract;
- use service\ExportService;
- use service\QrcodeService;
- use think\Cache;
- use think\Config;
- use traits\ModelTrait;
- use basic\ModelBasic;
- use service\WechatService;
- use service\PHPExcelService;
- use service\SystemConfigService;
- use app\admin\model\user\UserBill;
- /**
- * 微信用户 model
- * Class WechatUser
- * @package app\admin\model\wechat
- */
- class WechatUser extends ModelBasic
- {
- use ModelTrait;
- protected $insert = ['add_time'];
- /**
- * 用uid获得openid
- * @param $uid
- * @return mixed
- */
- public static function uidToOpenid($uid,$update = false)
- {
- $cacheName = 'openid_'.$uid;
- $openid = Cache::get($cacheName);
- if($openid && !$update) return $openid;
- $openid = self::where('uid',$uid)->value('openid');
- if(!$openid) exception('对应的openid不存在!');
- Cache::set($cacheName,$openid,0);
- return $openid;
- }
- public static function setAddTimeAttr($value)
- {
- return time();
- }
- /**
- * .添加新用户
- * @param $openid
- * @return object
- */
- public static function setNewUser($openid)
- {
- $userInfo = WechatService::getUserInfo($openid);
- $userInfo['tagid_list'] = implode(',',$userInfo['tagid_list']);
- return self::set($userInfo);
- }
- /**
- * 更新用户信息
- * @param $openid
- * @return bool
- */
- public static function updateUser($openid)
- {
- $userInfo = WechatService::getUserInfo($openid);
- $userInfo['tagid_list'] = implode(',',$userInfo['tagid_list']);
- return self::edit($userInfo,$openid,'openid');
- }
- /**
- * 用户存在就更新 不存在就添加
- * @param $openid
- */
- public static function saveUser($openid)
- {
- self::be($openid,'openid') == true ? self::updateUser($openid) : self::setNewUser($openid);
- }
- /**
- * 用户取消关注
- * @param $openid
- * @return bool
- */
- public static function unSubscribe($openid)
- {
- return self::edit(['subscribe'=>0],$openid,'openid');
- }
- /**
- * 获取微信用户
- * @param array $where
- * @return array
- */
- public static function systemPage($where = array(),$isall=false){
- $model = new self;
- $model = $model->where('openid','NOT NULL');
- if($where['nickname'] !== '') $model = $model->where('nickname','LIKE',"%$where[nickname]%");
- if($where['data'] !== ''){
- list($startTime,$endTime) = explode(' - ',$where['data']);
- $model = $model->where('add_time','>',strtotime($startTime));
- $model = $model->where('add_time','<',strtotime($endTime));
- }
- if(isset($where['tagid_list']) && $where['tagid_list'] !== ''){
- $tagid_list = explode(',',$where['tagid_list']);
- foreach ($tagid_list as $v){
- $model = $model->where('tagid_list','LIKE',"%$v%");
- }
- }
- if(isset($where['groupid']) && $where['groupid'] !== '-1' ) $model = $model->where('groupid',"$where[groupid]");
- if(isset($where['sex']) && $where['sex'] !== '' ) $model = $model->where('sex',"$where[sex]");
- if(isset($where['subscribe']) && $where['subscribe'] !== '' ) $model = $model->where('subscribe',"$where[subscribe]");
- $model = $model->order('uid desc');
- if(isset($where['export']) && $where['export'] == 1){
- $list = $model->select()->toArray();
- $export = [];
- foreach ($list as $index=>$item){
- $export[] = [
- $item['nickname'],
- $item['sex'],
- $item['country'].$item['province'].$item['city'],
- $item['subscribe'] == 1? '关注':'未关注',
- ];
- $list[$index] = $item;
- }
- PHPExcelService::setExcelHeader(['名称','性别','地区','是否关注公众号'])
- ->setExcelTile('微信用户导出','微信用户导出'.time(),' 生成时间:'.date('Y-m-d H:i:s',time()))
- ->setExcelContent($export)
- ->ExcelSave();
- }
- return self::page($model,$where);
- }
- public static function setSpreadWhere($where=[],$alias='a',$model=null)
- {
- $model=is_null($model) ? new self() : $model;
- if($alias){
- $model=$model->alias($alias)->join('user u','a.uid=u.uid')->order('u.uid desc');
- $alias.='.';
- }
- $status = (int)SystemConfigService::get('store_brokerage_statu');
- if ($status == 1) {
- if ($Listuids = User::where('is_promoter',1)->field('uid')->select()) {
- $newUids = [];
- foreach ($Listuids as $item){
- $newUids[] = $item['uid'];
- }
- $uids = $newUids;
- unset($newUids);
- $model = $model->where($alias . 'uid', 'in', implode(',', $uids));
- }else
- $model = $model->where($alias.'uid',-1);
- }
- if($where['nickname'] !== '') $model = $model->where("{$alias}nickname|{$alias}uid|u.phone",'LIKE',"%$where[nickname]%");
- if((isset($where['start_time']) && isset($where['end_time'])) && $where['start_time'] !== '' && $where['end_time'] !== ''){
- $model = $model->where("{$alias}add_time",'between',[strtotime($where['start_time']),strtotime($where['end_time'])]);
- }
- if(isset($where['sex']) && $where['sex'] !== '' ) $model = $model->where($alias.'sex',$where['sex']);
- if(isset($where['subscribe']) && $where['subscribe'] !== '' ) $model = $model->where($alias.'subscribe',$where['subscribe']);
- if(isset($where['order']) && $where['order'] != '') $model = $model->order($where['order']);
- if(isset($where['is_time']) && isset($where['data']) && $where['data']) $model = self::getModelTime($where,$model,$alias.'add_time');
- return $model;
- }
- /*
- * 获取
- * */
- public static function getSpreadBadge($where)
- {
- $where['is_time']=1;
- $listuids = self::setSpreadWhere($where)->field('u.uid')->select();
- $newUids = [];
- foreach ($listuids as $item){
- $newUids[] =$item['uid'];
- }
- $uids = $newUids;
- unset($uid,$newUids);
- //分销员人数
- $data['sum_count'] = count($uids);
- $data['spread_sum'] = 0;
- $data['order_count'] = 0;
- $data['pay_price'] = 0;
- $data['number'] = 0;
- $data['extract_count'] = 0;
- $data['extract_price'] = 0;
- if($data['sum_count']){
- //发展会员人数
- $data['spread_sum'] = User::where('spread_uid','in',$uids)->count();
- //订单总数
- $data['order_count'] = StoreOrder::where('uid','in',$uids)->where(['paid'=>1,'refund_status'=>0,'type'=>0])->count();
- //订单金额
- $data['pay_price'] = StoreOrder::where('uid','in',$uids)->where(['paid'=>1,'refund_status'=>0,'type'=>0])->sum('pay_price');
- //可提现金额
- $data['number'] = User::where('uid','in',$uids)->sum('brokerage_price');
- //提现次数
- $data['extract_count'] = UserExtract::where('uid','in',$uids)->count();
- //获取某个用户可提现金额
- $data['extract_price'] = User::getextractPrice($uids,$where);
- }
- return [
- [
- 'name'=>'分销员人数',
- 'field'=>'人',
- 'count'=>$data['sum_count'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>2,
- ],
- [
- 'name'=>'发展会员人数',
- 'field'=>'人',
- 'count'=>$data['spread_sum'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>2,
- ],
- [
- 'name'=>'分销订单数',
- 'field'=>'单',
- 'count'=>$data['order_count'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>2,
- ],
- [
- 'name'=>'订单金额',
- 'field'=>'元',
- 'count'=>$data['pay_price'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>2,
- ],
- [
- 'name'=>'提现金额',
- 'field'=>'元',
- 'count'=>$data['number'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>2,
- ],
- [
- 'name'=>'提现次数',
- 'field'=>'次',
- 'count'=>$data['extract_count'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>2,
- ],
- [
- 'name'=>'未提现金额',
- 'field'=>'元',
- 'count'=>$data['extract_price'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>2,
- ],
- ];
- }
- /**
- * 获取分销用户
- * @param array $where
- * @return array
- */
- public static function agentSystemPage($where = array()){
- $where['is_time']=1;
- $model=self::setSpreadWhere($where);
- $status =SystemConfigService::get('store_brokerage_statu');
- if(isset($where['excel']) && $where['excel'] == 1){
- $list = $model->field(['a.uid','u.phone','a.nickname','a.sex','a.country','a.province','a.city','a.now_money','a.subscribe','u.brokerage_price'])->select()->toArray();
- $export = [];
- foreach ($list as $index=>$item){
- $Listuids = self::getModelTime($where,User::where('spread_uid',$item['uid']))->field('uid')->select();
- $newUids = [];
- foreach ($Listuids as $val){
- $newUids[] = $val['uid'];
- }
- $uids = $newUids;
- unset($uid,$newUids);
- $item['spread_count'] = count($uids);
- if(count($uids)){
- $ListUidTwo = User::where('spread_uid','in',$uids)->field('uid')->select();
- $newUids = [];
- foreach ($ListUidTwo as $val){
- $newUids[] = $val['uid'];
- }
- $uidTwo = $newUids;
- unset($uid,$newUids);
- $uids = array_merge($uids,$uidTwo);
- $uids = array_unique($uids);
- $uids = array_merge($uids);
- }
- $item['extract_sum_price'] = self::getModelTime($where,UserExtract::where('uid',$item['uid']))->sum('extract_price');
- $item['extract_count_price'] = UserExtract::getUserCountPrice($item['uid']);//累计提现金额
- $item['extract_count_num'] = UserExtract::getUserCountNum($item['uid'],$where);//提现次数
- $item['order_price'] = count($uids) ? StoreOrder::where('uid','in',$uids)->where(['paid'=>1,'refund_status'=>0,'type'=>0])->sum('pay_price') : 0;//订单金额
- $item['order_count'] = count($uids) ? StoreOrder::where('uid','in',$uids)->where(['paid'=>1,'refund_status'=>0,'type'=>0])->count() : 0;//订单数量
- $item['stair'] = self::getUserSpreadUidCount($item['uid'],0,$where);//一级推荐人
- $item['second'] = self::getUserSpreadUidCount($item['uid'],1,$where);//二级推荐人
- $item['order_stair'] = self::getUserSpreadOrderCount($item['uid'],0,$where);//一级推荐人订单
- $item['order_second'] = self::getUserSpreadOrderCount($item['uid'],1,$where);//二级推荐人订单
- //可提现佣金
- $item['new_money'] = $item['brokerage_price'];
- //总共佣金
- $income=self::getModelTime($where,UserBill::where(['uid'=>$item['uid'],'category'=>'now_money','type'=>'brokerage','pm'=>1,'status'=>1]))->sum('number');
- $return=self::getModelTime($where,UserBill::where(['uid'=>$item['uid'],'category'=>'now_money','type'=>'brokerage_return','pm'=>0,'status'=>1]))->sum('number');
- $item['brokerage_money'] = bcsub($income,$return,2);
- $item['spread_name']='暂无';
- if($spread_uid=User::where('uid',$item['uid'])->value('spread_uid')) {
- if($user=User::where('uid',$spread_uid)->field(['uid','nickname'])->find()){
- $item['spread_name']=$user['nickname'].'/'.$user['uid'];
- }
- }
- $export[] = [
- $item['uid'],
- $item['nickname'],
- $item['phone'],
- $item['spread_count'],
- $item['order_count'],
- $item['order_price'],
- $item['brokerage_money'],
- $item['extract_count_price'],
- $item['extract_count_num'],
- $item['new_money'],
- $item['spread_name'],
- ];
- }
- PHPExcelService::setExcelHeader(['用户编号','昵称','电话号码','推广用户数量','订单数量','推广订单金额','佣金金额','已提现金额','提现次数','未提现金额','上级推广人'])
- ->setExcelTile('推广用户','推广用户导出'.time(),' 生成时间:'.date('Y-m-d H:i:s',time()))
- ->setExcelContent($export)
- ->ExcelSave();
- }
- $data = $model->page((int)$where['page'],(int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- foreach ($data as &$item){
- if((int)$status==2) $item['is_show']=false;
- else $item['is_show']=true;
- $Listuids = self::getModelTime($where,User::where('spread_uid',$item['uid']))->field('uid')->select();
- $newUids = [];
- foreach ($Listuids as $val){
- $newUids[] = $val['uid'];
- }
- $uids = $newUids;
- unset($uid,$newUids);
- $item['spread_count'] = count($uids);
- if(count($uids)){
- $ListUidTwo = User::where('spread_uid','in',$uids)->field('uid')->select();
- $newUids = [];
- foreach ($ListUidTwo as $val){
- $newUids[] = $val['uid'];
- }
- $uidTwo = $newUids;
- unset($uid,$newUids);
- $uids = array_merge($uids,$uidTwo);
- $uids = array_unique($uids);
- $uids = array_merge($uids);
- }
- $item['extract_sum_price'] = self::getModelTime($where,UserExtract::where('uid',$item['uid']))->sum('extract_price');
- $item['extract_count_price'] = UserExtract::getUserCountPrice($item['uid']);//累计提现金额
- $item['extract_count_num'] = UserExtract::getUserCountNum($item['uid'],$where);//提现次数
- $item['order_price'] = count($uids) ? StoreOrder::where('uid','in',$uids)->where(['paid'=>1,'refund_status'=>0])->sum('pay_price') : 0;//订单金额
- $item['order_count'] = count($uids) ? StoreOrder::where('uid','in',$uids)->where(['paid'=>1,'refund_status'=>0])->count() : 0;//订单数量
- if($item['openid'])
- $item['type_name'] = '公众号';
- $item['subscribe_name']=$item['subscribe'] ? '已关注' : ($item['routine_openid'] && !$item['unionid'] ? '暂无' : '未关注') ;
- if($item['sex']==1)
- $item['sex_name'] = '男';
- else if($item['sex']==2)
- $item['sex_name'] = '女';
- else if($item['sex']==0)
- $item['sex_name'] = '未知';
- $item['spread_name']='暂无';
- if($spread_uid=User::where('uid',$item['uid'])->value('spread_uid')) {
- if($user=User::where('uid',$spread_uid)->field(['uid','nickname'])->find()){
- $item['spread_name']=$user['nickname'].'/'.$user['uid'];
- }
- }
- $income=self::getModelTime($where,UserBill::where(['uid'=>$item['uid'],'category'=>'now_money','type'=>'brokerage','pm'=>1,'status'=>1]))->sum('number');
- $return=self::getModelTime($where,UserBill::where(['uid'=>$item['uid'],'category'=>'now_money','type'=>'brokerage_return','pm'=>0,'status'=>1]))->sum('number');
- //总共佣金
- $item['brokerage_money'] = bcsub($income,$return,2);
- //可提现佣金
- $item['new_money'] = $item['brokerage_price'];
- $item['stair'] = self::getUserSpreadUidCount($item['uid'],0,$where);//一级推荐人
- $item['second'] = self::getUserSpreadUidCount($item['uid'],1,$where);//二级推荐人
- $item['order_stair'] = self::getUserSpreadOrderCount($item['uid'],0,$where);//一级推荐人订单
- $item['order_second'] = self::getUserSpreadOrderCount($item['uid'],1,$where);//二级推荐人订单
- }
- $count = self::setSpreadWhere($where)->count();
- return compact('data','count');
- }
- /**
- * 获取推广人数
- * @param $uid //用户的uid
- * @param int $spread
- * $spread 0 一级推广人数 1 二级推广人数
- * @return int|string
- */
- public static function getUserSpreadUidCount($uid,$spread = 1){
- $userStair = User::where('spread_uid',$uid)->column('uid','uid');//获取一级推家人
- if($userStair){
- if(!$spread) return count($userStair);//返回一级推人人数
- else return User::where('spread_uid','IN',implode(',',$userStair))->count();//二级推荐人数
- }else return 0;
- }
- /**
- * 获取推广人的订单
- * @param $uid
- * @param int $spread
- * $spread 0 一级推广总订单 1 所有推广总订单
- * @return int|string
- */
- public static function getUserSpreadOrderCount($uid,$spread = 1){
- $userStair = User::where('spread_uid',$uid)->column('uid','uid');//获取一级推家人uid
- if($userStair){
- if(!$spread){
- return StoreOrder::where('uid','IN',implode(',',$userStair))->where('paid',1)->where('refund_status',0)->where('status',2)->count();//获取一级推广人订单数
- }
- else{
- $userSecond = User::where('spread_uid','IN',implode(',',$userStair))->column('uid','uid');//二级推广人的uid
- if($userSecond){
- return StoreOrder::where('uid','IN',implode(',',$userSecond))->where('paid',1)->where('refund_status',0)->where('status',2)->count();//获取二级推广人订单数
- }else return 0;
- }
- }else return 0;
- }
- /**
- * 获取筛选后的所有用户uid
- * @param array $where
- * @return array
- */
- public static function getAll($where = array()){
- $model = new self;
- if($where['nickname'] !== '') $model = $model->where('nickname','LIKE',"%$where[nickname]%");
- if($where['data'] !== ''){
- list($startTime,$endTime) = explode(' - ',$where['data']);
- $model = $model->where('add_time','>',strtotime($startTime));
- $model = $model->where('add_time','<',strtotime($endTime));
- }
- if($where['tagid_list'] !== ''){
- $model = $model->where('tagid_list','LIKE',"%$where[tagid_list]%");
- }
- if($where['groupid'] !== '-1' ) $model = $model->where('groupid',"$where[groupid]");
- if($where['sex'] !== '' ) $model = $model->where('sex',"$where[sex]");
- return $model->column('uid','uid');
- }
- /**
- * 获取已关注的用户
- * @param $field
- */
- public static function getSubscribe($field){
- return self::where('subscribe',1)->column($field);
- }
- public static function getUserAll($field){
- return self::column($field);
- }
- public static function getUserTag()
- {
- $tagName = Config::get('system_wechat_tag');
- return Cache::tag($tagName)->remember('_wechat_tag',function () use($tagName){
- Cache::tag($tagName,['_wechat_tag']);
- $tag = WechatService::userTagService()->lists()->toArray()['tags']?:array();
- $list = [];
- foreach ($tag as $g){
- $list[$g['id']] = $g;
- }
- return $list;
- });
- }
- public static function clearUserTag()
- {
- Cache::rm('_wechat_tag');
- }
- public static function getUserGroup()
- {
- $tagName = Config::get('system_wechat_tag');
- return Cache::tag($tagName)->remember('_wechat_group',function () use($tagName){
- Cache::tag($tagName,['_wechat_group']);
- $tag = WechatService::userGroupService()->lists()->toArray()['groups']?:array();
- $list = [];
- foreach ($tag as $g){
- $list[$g['id']] = $g;
- }
- return $list;
- });
- }
- public static function clearUserGroup()
- {
- Cache::rm('_wechat_group');
- }
- /**
- * 同步微信用户表内的 一级推荐人 二级推荐人 一级推荐人订单 二级推荐人订单
- */
- public static function setWechatUserOrder(){
- $uidAll = self::column('uid','uid');
- $item = [];
- foreach ($uidAll as $k=>$v){
- $item['stair'] = self::getUserSpreadUidCount($v,0);//一级推荐人
- $item['second'] = self::getUserSpreadUidCount($v);//二级推荐人
- $item['order_stair'] = self::getUserSpreadOrderCount($v,0);//一级推荐人订单
- $item['order_second'] = self::getUserSpreadOrderCount($v);//二级推荐人订单
- $item['now_money'] = User::where('uid',$v)->value('now_money');//佣金
- if(!$item['stair'] && !$item['second'] && !$item['order_stair'] && !$item['order_second'] && !$item['now_money']) continue;
- else self::edit($item,$v);
- }
- }
- /*
- * 推广订单
- * @param array $where
- * @return array
- * */
- public static function getStairOrderList($where)
- {
- if(!isset($where['uid'])) return [];
- $data = self::setSairOrderWhere($where,new StoreOrder())->page((int)$where['page'],(int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- $Info = User::where('uid',$where['uid'])->find();
- foreach ($data as &$item){
- $userInfo = User::where('uid',$item['uid'])->find();
- $item['user_info'] = '';
- $item['avatar'] = '';
- if($userInfo){
- $item['user_info'] = $userInfo->nickname.'|'.($userInfo->phone ? $userInfo->phone .'|' : '').$userInfo->name;
- $item['avatar'] = $userInfo->avatar;
- }
- $item['spread_info'] = $Info->nickname."|".($Info->phone ? $Info->phone."|" : '').$Info->uid;
- $brokerage = UserBill::where(['category'=>'now_money','type'=>'brokerage','link_id'=>$item['id']])->value('number');
- $brokerage_return = UserBill::where(['category'=>'now_money','type'=>'brokerage_return','link_id'=>$item['id']])->value('number');
- $item['number_price'] =bcsub($brokerage,$brokerage_return,2);
- $item['_pay_time'] = date('Y-m-d H:i:s',$item['pay_time']);
- $item['_add_time'] = date('Y-m-d H:i:s',$item['add_time']);
- $item['take_time'] = ($change_time = StoreOrderStatus::where(['change_type'=>'user_take_delivery','oid'=>$item['id']])->value('change_time')) ?
- date('Y-m-d H:i:s',$change_time) : '暂无';
- }
- $count = self::setSairOrderWhere($where,new StoreOrder())->count();
- return compact('data','count');
- }
- public static function setSairOrderWhere($where,$model = null,$alias='')
- {
- $model = $model === null ? new self() : $model;
- if(!isset($where['uid'])) return $model;
- if($alias){
- $model = $model->alias($alias);
- $alias .= '.';
- }
- if(isset($where['type'])){
- switch ((int)$where['type']){
- case 1:
- $uids = User::where('spread_uid',$where['uid'])->column('uid');
- if(count($uids))
- $model = $model->where("{$alias}uid",'in',$uids);
- else
- $model = $model->where("{$alias}uid",0);
- break;
- case 2:
- $uids = User::where('spread_uid',$where['uid'])->column('uid');
- if(count($uids))
- $spread_uid_two=User::where('spread_uid','in',$uids)->column('uid');
- else
- $spread_uid_two=[0];
- if(count($spread_uid_two))
- $model = $model->where("{$alias}uid",'in',$spread_uid_two);
- else
- $model = $model->where("{$alias}uid",0);
- break;
- default:
- $uids = User::where('spread_uid',$where['uid'])->column('uid');
- if(count($uids)) {
- if($spread_uid_two = User::where('spread_uid', 'in', $uids)->column('uid')){
- $uids = array_merge($uids,$spread_uid_two);
- $uids = array_unique($uids);
- $uids = array_merge($uids);
- }
- $model = $model->where("{$alias}uid",'in',$uids);
- }else
- $model = $model->where("{$alias}uid",0);
- break;
- }
- }
- if(isset($where['data']) && $where['data']) $model = self::getModelTime($where,$model,"{$alias}add_time");
- return $model->where("{$alias}is_del",0)->where($alias.'paid',1);
- }
- /*
- * 推广订单统计
- * @param array $where
- * @return array
- * */
- public static function getStairOrderBadge($where)
- {
- if(!isset($where['uid'])) return [];
- $data['order_count'] = self::setSairOrderWhere($where,new StoreOrder())->count();
- $data['order_price'] = self::setSairOrderWhere($where,new StoreOrder())->sum('pay_price');
- $ids = self::setSairOrderWhere($where,new StoreOrder())->where(['paid'=>1,'is_del'=>0,'refund_status'=>0])->where('status','>',1)->column('id');
- $data['number_price'] = 0;
- if(count($ids)){
- $brokerage = UserBill::where(['category'=>'now_money','type'=>'brokerage','uid'=>$where['uid']])->where('link_id','in',$ids)->sum('number');
- $brokerage_return = UserBill::where(['category'=>'now_money','type'=>'brokerage_return','uid'=>$where['uid']])->where('link_id','in',$ids)->sum('number');
- $data['number_price'] =bcsub($brokerage,$brokerage_return,2);
- }
- $where['type'] = 1;
- $data['one_price'] = self::setSairOrderWhere($where,new StoreOrder())->sum('pay_price');
- $data['one_count'] = self::setSairOrderWhere($where,new StoreOrder())->count();
- $where['type'] = 2;
- $data['two_price'] = self::setSairOrderWhere($where,new StoreOrder())->sum('pay_price');
- $data['two_count'] = self::setSairOrderWhere($where,new StoreOrder())->count();
- return [
- [
- 'name'=>'总金额',
- 'field'=>'元',
- 'count'=>$data['order_price'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>3,
- ],
- [
- 'name'=>'订单总数',
- 'field'=>'单',
- 'count'=>$data['order_count'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>3,
- ],
- [
- 'name'=>'返佣总金额',
- 'field'=>'元',
- 'count'=>$data['number_price'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>3,
- ],
- [
- 'name'=>'一级总金额',
- 'field'=>'元',
- 'count'=>$data['one_price'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>3,
- ],
- [
- 'name'=>'一级订单数',
- 'field'=>'单',
- 'count'=>$data['one_count'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>3,
- ],
- [
- 'name'=>'二级总金额',
- 'field'=>'元',
- 'count'=>$data['two_price'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>3,
- ],
- [
- 'name'=>'二级订单数',
- 'field'=>'单',
- 'count'=>$data['two_count'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>3,
- ],
- ];
- }
- public static function getStairList($where)
- {
- if(!isset($where['uid'])) return [];
- $data = self::setSairWhere($where,new User())->order('add_time desc')->page((int)$where['page'],(int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- $userInfo = User::where('uid',$where['uid'])->find();
- foreach ($data as &$item){
- $item['spread_count'] = User::where('spread_uid',$item['uid'])->count();
- $item['order_count'] = StoreOrder::where('uid',$item['uid'])->where(['paid'=>1,'is_del'=>0])->count();
- $item['promoter_name'] = $item['is_promoter'] ? '是' : '否';
- $item['add_time'] = date("Y-m-d H:i:s",$item['add_time']);
- }
- $count = self::setSairWhere($where,new User())->count();
- return compact('data','count');
- }
- /*
- * 设置查询条件
- * @param array $where
- * @param object $model
- * @param string $alias
- * */
- public static function setSairWhere($where,$model = null,$alias='')
- {
- $model = $model === null ? new self() : $model;
- if(!isset($where['uid'])) return $model;
- if($alias){
- $model = $model->alias($alias);
- $alias .= '.';
- }
- if(isset($where['type'])){
- switch ((int)$where['type']){
- case 1:
- $uids = User::where('spread_uid',$where['uid'])->column('uid');
- if(count($uids))
- $model = $model->where("{$alias}uid",'in',$uids);
- else
- $model = $model->where("{$alias}uid",0);
- break;
- case 2:
- $uids = User::where('spread_uid',$where['uid'])->column('uid');
- if(count($uids))
- $spread_uid_two=User::where('spread_uid','in',$uids)->column('uid');
- else
- $spread_uid_two=[0];
- if(count($spread_uid_two))
- $model = $model->where("{$alias}uid",'in',$spread_uid_two);
- else
- $model = $model->where("{$alias}uid",0);
- break;
- default:
- $uids = User::where('spread_uid',$where['uid'])->column('uid');
- if(count($uids)) {
- if($spread_uid_two = User::where('spread_uid', 'in', $uids)->column('uid')){
- $uids = array_merge($uids,$spread_uid_two);
- $uids = array_unique($uids);
- $uids = array_merge($uids);
- }
- $model = $model->where("{$alias}uid",'in',$uids);
- }else
- $model = $model->where("{$alias}uid",0);
- break;
- }
- }
- if(isset($where['data']) && $where['data']) $model = self::getModelTime($where,$model,"{$alias}add_time");
- if(isset($where['nickname']) && $where['nickname']) $model = $model->where("{$alias}phone|{$alias}nickname|{$alias}name|{$alias}uid",'LIKE',"%$where[nickname]%");
- return $model->where($alias.'status',1);
- }
- public static function getSairBadge($where)
- {
- $data['number'] = self::setSairWhere($where,new User())->count();
- $where['type'] = 1;
- $data['one_number'] = self::setSairWhere($where,new User())->count();
- $where['type'] = 2;
- $data['two_number'] = self::setSairWhere($where,new User())->count();
- $col = $data['two_number'] > 0 ? 4 : 6;
- return [
- [
- 'name'=>'总人数',
- 'field'=>'人',
- 'count'=>$data['number'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>$col,
- ],
- [
- 'name'=>'一级人数',
- 'field'=>'人',
- 'count'=>$data['one_number'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>$col,
- ],
- [
- 'name'=>'二级人数',
- 'field'=>'人',
- 'count'=>$data['two_number'],
- 'background_color'=>'layui-bg-cyan',
- 'col'=>$col,
- ],
- ];
- }
- }
|