123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278 |
- <?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\user;
- use app\admin\model\order\StoreOrder;
- use app\admin\model\user\UserExtract;
- use service\PHPExcelService;
- use traits\ModelTrait;
- use app\wap\model\user\UserBill;
- use basic\ModelBasic;
- use app\admin\model\wechat\WechatUser;
- use service\SystemConfigService;
- /**
- * 用户管理 model
- * Class User
- * @package app\admin\model\user
- */
- class User 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_promoter'] != '') $model = $model->where('is_promoter', $where['is_promoter']);
- if ($where['nickname'] != '') $model = $model->where('nickname|uid', 'like', "%$where[nickname]%");
- if (isset($where['uids']) && count($where['uids'])) $model->where('uid', 'in', $where['uids']);
- $model = $model->order('uid desc');
- return self::page($model, function ($item) {
- if ($item['spread_uid']) {
- $item['spread_uid_nickname'] = self::where('uid', $item['spread_uid'])->value('nickname');
- } else {
- $item['spread_uid_nickname'] = '无';
- }
- }, $where);
- }
- public static function getSpreadUidTwo($uid)
- {
- if (is_array($uid)) $spread_uid = self::where('spread_uid', 'in', $uid)->column('uid');
- else $spread_uid = self::where('spread_uid', $uid)->column('uid');
- return self::where('spread_uid', 'in', $spread_uid)->column('uid');
- }
- /*
- * 设置搜索条件
- *
- */
- public static function setWhere($where)
- {
- if ($where['order'] != '') {
- $model = self::order(self::setOrder($where['order']));
- } else {
- $model = self::order('u.uid desc');
- }
- if($where['nickname'] != ''){
- $model = $model->where('u.nickname|u.uid','LIKE',"%$where[nickname]%");
- }
- if($where['status'] != ''){
- $model = $model->where('status',$where['status']);
- }
- if ($where['user_time_type'] == 'visitno' && $where['user_time'] != '') {
- list($startTime, $endTime) = explode(' - ', $where['user_time']);
- $model = $model->where('u.last_time', ['>', strtotime($endTime) + 24 * 3600], ['<', strtotime($startTime)], 'or');
- }
- if ($where['user_time_type'] == 'visit' && $where['user_time'] != '') {
- list($startTime, $endTime) = explode(' - ', $where['user_time']);
- $model = $model->where('u.last_time', '>', strtotime($startTime));
- $model = $model->where('u.last_time', '<', strtotime($endTime) + 24 * 3600);
- }
- if ($where['user_time_type'] == 'add_time' && $where['user_time'] != '') {
- list($startTime, $endTime) = explode(' - ', $where['user_time']);
- $model = $model->where('u.add_time', '>', strtotime($startTime));
- $model = $model->where('u.add_time', '<', strtotime($endTime) + 24 * 3600);
- }
- if ($where['pay_count'] !== '') {
- if ($where['pay_count'] == '-1') $model = $model->where('pay_count', 0);
- else $model = $model->where('pay_count', '>', $where['pay_count']);
- }
- if ($where['country'] != '') {
- if ($where['country'] == 'domestic') $model = $model->where('w.country', 'EQ', '中国');
- else if ($where['country'] == 'abroad') $model = $model->where('w.country', 'NEQ', '中国');
- }
- switch ($where['is_promoter']) {
- case '1':
- $model = $model->where('u.is_promoter', 1);
- break;
- case '2':
- $model = $model->where('u.level', 1);
- break;
- }
- return $model;
- }
- /**
- * 异步获取当前用户 信息
- * @param $where
- * @return array
- */
- public static function getUserList($where)
- {
- $model = self::setWhere($where);
- $list = $model->alias('u')
- ->join('wechat_user w', 'u.uid=w.uid', 'left')
- ->field('u.*,w.country,w.province,w.city,w.sex,w.unionid,w.openid,w.routine_openid,w.groupid,w.tagid_list,w.subscribe,w.subscribe_time')
- ->page((int)$where['page'], (int)$where['limit'])
- ->select()
- ->each(function ($item) {
- $item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
- if ($item['last_time']) $item['last_time'] = date('Y-m-d H:i:s', $item['last_time']);//最近一次访问日期
- else $item['last_time'] = '无访问';//最近一次访问日期
- self::edit(['pay_count' => StoreOrder::getUserCountPay($item['uid'])], $item['uid']);
- $item['extract_count_price'] = UserExtract::getUserCountPrice($item['uid']);//累计提现
- if ($item['spread_uid']) {
- $item['spread_uid_nickname'] = self::where('uid', $item['spread_uid'])->value('nickname') . '/' . $item['spread_uid'];
- } else {
- $item['spread_uid_nickname'] = '无';
- }
- $item['user_type'] = '公众号类型';
- if ($item['sex'] == 1) {
- $item['sex'] = '男';
- } else if ($item['sex'] == 2) {
- $item['sex'] = '女';
- } else $item['sex'] = '保密';
- if ($item['level']) {
- $item['levelType'] = '会员';
- }else{
- $item['levelType'] = '非会员';
- }
- $item['_valid_time'] = date('Y-m-d H:i:s', $item['valid_time']);
- })->toArray();
- $count = self::setWhere($where)->alias('u')->join('WechatUser w', 'u.uid=w.uid', 'left')->count();
- return ['count' => $count, 'data' => $list];
- }
- /**
- * 修改用户状态
- * @param $uids 用户uid
- * @param $status 修改状态
- * @return array
- */
- public static function destrSyatus($uids, $status)
- {
- if (empty($uids) && !is_array($uids)) return false;
- if ($status == '') return false;
- self::beginTrans();
- try {
- $res = self::where('uid', 'in', $uids)->update(['status' => $status]);
- self::checkTrans($res);
- return true;
- } catch (\Exception $e) {
- self::rollbackTrans();
- return Json::fail($e->getMessage());
- }
- }
- /*
- * 获取某季度,某年某年后的时间戳
- *
- * self::getMonth('n',1) 获取当前季度的上个季度的时间戳
- * self::getMonth('n') 获取当前季度的时间戳
- */
- public static function getMonth($time = '', $ceil = 0)
- {
- if (empty($time)) {
- $firstday = date("Y-m-01", time());
- $lastday = date("Y-m-d", strtotime("$firstday +1 month -1 day"));
- } else if ($time == 'n') {
- if ($ceil != 0)
- $season = ceil(date('n') / 3) - $ceil;
- else
- $season = ceil(date('n') / 3);
- $firstday = date('Y-m-01', mktime(0, 0, 0, ($season - 1) * 3 + 1, 1, date('Y')));
- $lastday = date('Y-m-t', mktime(0, 0, 0, $season * 3, 1, date('Y')));
- } else if ($time == 'y') {
- $firstday = date('Y-01-01');
- $lastday = date('Y-12-31');
- } else if ($time == 'h') {
- $firstday = date('Y-m-d', strtotime('this week +' . $ceil . ' day')) . ' 00:00:00';
- $lastday = date('Y-m-d', strtotime('this week +' . ($ceil + 1) . ' day')) . ' 23:59:59';
- }
- return array($firstday, $lastday);
- }
- public static function getcount()
- {
- return self::alias('a')->join('wechat_user u', 'u.uid=a.uid', 'left')->count();
- }
- /*
- *获取用户某个时间段的消费信息
- *
- * reutrn Array || number
- */
- public static function consume($where, $status = '', $keep = '')
- {
- $model = new self;
- $user_id = [];
- if (is_array($where)) {
- if ($where['is_promoter'] != '') $model = $model->where('is_promoter', $where['is_promoter']);
- if ($where['status'] != '') $model = $model->where('status', $where['status']);
- switch ($where['date']) {
- case null:
- case 'today':
- case 'week':
- case 'year':
- if ($where['date'] == null) {
- $where['date'] = 'month';
- }
- if ($keep) {
- $model = $model->whereTime('add_time', $where['date'])->whereTime('last_time', $where['date']);
- } else {
- $model = $model->whereTime('add_time', $where['date']);
- }
- break;
- case 'quarter':
- $quarter = self::getMonth('n');
- $startTime = strtotime($quarter[0]);
- $endTime = strtotime($quarter[1]);
- if ($keep) {
- $model = $model->where('add_time', '>', $startTime)->where('add_time', '<', $endTime)->where('last_time', '>', $startTime)->where('last_time', '<', $endTime);
- } else {
- $model = $model->where('add_time', '>', $startTime)->where('add_time', '<', $endTime);
- }
- break;
- default:
- //自定义时间
- if (strstr($where['date'], '-') !== FALSE) {
- list($startTime, $endTime) = explode('-', $where['date']);
- $model = $model->where('add_time', '>', strtotime($startTime))->where('add_time', '<', strtotime($endTime));
- } else {
- $model = $model->whereTime('add_time', 'month');
- }
- break;
- }
- } else {
- if (is_array($status)) {
- $model = $model->where('add_time', '>', $status[0])->where('add_time', '<', $status[1]);
- }
- }
- if ($keep === true) {
- return $model->count();
- }
- if ($status === 'default') {
- return $model->group('from_unixtime(add_time,\'%Y-%m-%d\')')->field('count(uid) num,from_unixtime(add_time,\'%Y-%m-%d\') add_time,uid')->select()->toArray();
- }
- $uid = $model->field('uid')->select()->toArray();
- foreach ($uid as $val) {
- $user_id[] = $val['uid'];
- }
- if (empty($user_id)) {
- $user_id = [0];
- }
- if ($status === 'xiaofei') {
- $list = UserBill::where('uid', 'in', $user_id)
- ->group('type')
- ->field('sum(number) as top_number,title')
- ->select()
- ->toArray();
- $series = [
- 'name' => isset($list[0]['title']) ? $list[0]['title'] : '',
- 'type' => 'pie',
- 'radius' => ['40%', '50%'],
- 'data' => []
- ];
- foreach ($list as $key => $val) {
- $series['data'][$key]['value'] = $val['top_number'];
- $series['data'][$key]['name'] = $val['title'];
- }
- return $series;
- } else if ($status === 'form') {
- $list = WechatUser::where('uid', 'in', $user_id)->group('city')->field('count(city) as top_city,city')->limit(0, 10)->select()->toArray();
- $count = self::getcount();
- $option = [
- 'legend_date' => [],
- 'series_date' => []
- ];
- foreach ($list as $key => $val) {
- $num = $count != 0 ? (bcdiv($val['top_city'], $count, 2)) * 100 : 0;
- $t = ['name' => $num . '% ' . (empty($val['city']) ? '未知' : $val['city']), 'icon' => 'circle'];
- $option['legend_date'][$key] = $t;
- $option['series_date'][$key] = ['value' => $num, 'name' => $t['name']];
- }
- return $option;
- } else {
- $number = UserBill::where('uid', 'in', $user_id)->where('type', 'pay_product')->sum('number');
- return $number;
- }
- }
- /*
- * 获取 用户某个时间段的钱数或者TOP20排行
- *
- * return Array || number
- */
- public static function getUserSpend($date, $status = '')
- {
- $model = new self();
- $model = $model->alias('A');
- switch ($date) {
- case null:
- case 'today':
- case 'week':
- case 'year':
- if ($date == null) $date = 'month';
- $model = $model->whereTime('A.add_time', $date);
- break;
- case 'quarter':
- list($startTime, $endTime) = User::getMonth('n');
- $model = $model->where('A.add_time', '>', strtotime($startTime));
- $model = $model->where('A.add_time', '<', strtotime($endTime));
- break;
- default:
- list($startTime, $endTime) = explode('-', $date);
- $model = $model->where('A.add_time', '>', strtotime($startTime));
- $model = $model->where('A.add_time', '<', strtotime($endTime));
- break;
- }
- if ($status === true) {
- return $model->join('user_bill B', 'B.uid=A.uid')->where('B.type', 'pay_product')->where('B.pm', 0)->sum('B.number');
- }
- $list = $model->join('user_bill B', 'B.uid=A.uid')
- ->where('B.type', 'pay_product')
- ->where('B.pm', 0)
- ->field('sum(B.number) as totel_number,A.nickname,A.avatar,A.now_money,A.uid,A.add_time')
- ->order('totel_number desc')
- ->limit(0, 20)
- ->select()
- ->toArray();
- if (!isset($list[0]['totel_number'])) {
- $list = [];
- }
- return $list;
- }
- /*
- * 获取 相对于上月或者其他的数据
- *
- * return Array
- */
- public static function getPostNumber($date, $status = false, $field = 'A.add_time', $t = '消费')
- {
- $model = new self();
- if (!$status) $model = $model->alias('A');
- switch ($date) {
- case null:
- case 'today':
- case 'week':
- case 'year':
- if ($date == null) {
- $date = 'last month';
- $title = '相比上月用户' . $t . '增长';
- }
- if ($date == 'today') {
- $date = 'yesterday';
- $title = '相比昨天用户' . $t . '增长';
- }
- if ($date == 'week') {
- $date = 'last week';
- $title = '相比上周用户' . $t . '增长';
- }
- if ($date == 'year') {
- $date = 'last year';
- $title = '相比去年用户' . $t . '增长';
- }
- $model = $model->whereTime($field, $date);
- break;
- case 'quarter':
- $title = '相比上季度用户' . $t . '增长';
- list($startTime, $endTime) = User::getMonth('n', 1);
- $model = $model->where($field, '>', $startTime);
- $model = $model->where($field, '<', $endTime);
- break;
- default:
- list($startTime, $endTime) = explode('-', $date);
- $title = '相比' . $startTime . '-' . $endTime . '时间段用户' . $t . '增长';
- $Time = strtotime($endTime) - strtotime($startTime);
- $model = $model->where($field, '>', strtotime($startTime) + $Time);
- $model = $model->where($field, '<', strtotime($endTime) + $Time);
- break;
- }
- if ($status) {
- return [$model->count(), $title];
- }
- $number = $model->join('user_bill B', 'B.uid=A.uid')->where('B.type', 'pay_product')->where('B.pm', 0)->sum('B.number');
- return [$number, $title];
- }
- //获取用户新增,头部信息
- public static function getBadgeList($where)
- {
- $user_count = self::setWherePage(self::getModelTime($where, new self), $where, ['is_promoter', 'status'])->count();
- $user_count_old = self::getOldDate($where)->count();
- $fenxiao = self::setWherePage(self::getModelTime($where, new self), $where, ['is_promoter', 'status'])->where('spread_uid', '<>', 0)->count();
- $fenxiao_count = self::getOldDate($where)->where('spread_uid', 'neq', 0)->count();
- $newFemxiao_count = bcsub($fenxiao, $fenxiao_count, 0);
- $order_count = bcsub($user_count, $user_count_old, 0);
- return [
- [
- 'name' => '会员人数',
- 'field' => '个',
- 'count' => $user_count,
- 'content' => '会员总人数',
- 'background_color' => 'layui-bg-blue',
- 'sum' => self::count(),
- 'class' => 'fa fa-bar-chart',
- ],
- [
- 'name' => '会员增长',
- 'field' => '个',
- 'count' => $order_count,
- 'content' => '会员增长率',
- 'background_color' => 'layui-bg-cyan',
- 'sum' => $user_count_old ? bcdiv($order_count, $user_count_old, 2) * 100 : 0,
- 'class' => 'fa fa-line-chart',
- ],
- [
- 'name' => '分销人数',
- 'field' => '个',
- 'count' => $fenxiao,
- 'content' => '分销总人数',
- 'background_color' => 'layui-bg-green',
- 'sum' => self::where('spread_uid', 'neq', 0)->count(),
- 'class' => 'fa fa-bar-chart',
- ],
- [
- 'name' => '分销增长',
- 'field' => '个',
- 'count' => $newFemxiao_count,
- 'content' => '分销总人数',
- 'background_color' => 'layui-bg-orange',
- 'sum' => $fenxiao_count ? bcdiv($newFemxiao_count, $fenxiao_count, 2) * 100 : 0,
- 'class' => 'fa fa-cube',
- ],
- ];
- }
- /*
- * 获取会员增长曲线图和分布图
- * $where 查询条件
- * $limit 显示条数,是否有滚动条
- */
- public static function getUserChartList($where, $limit = 20)
- {
- $list = self::setWherePage(self::getModelTime($where, new self), $where, ['is_promoter', 'status'])
- ->where('add_time', 'neq', 0)
- ->field(['FROM_UNIXTIME(add_time,"%Y-%m-%d") as _add_time', 'count(uid) as num'])
- ->order('_add_time asc')
- ->group('_add_time')
- ->select();
- count($list) && $list = $list->toArray();
- $seriesdata = [];
- $xdata = [];
- $Zoom = '';
- foreach ($list as $item) {
- $seriesdata[] = $item['num'];
- $xdata[] = $item['_add_time'];
- }
- (count($xdata) > $limit) && $Zoom = $xdata[$limit - 5];
- //多次购物会员数量饼状图
- $count = self::setWherePage(self::getModelTime($where, new self), $where, ['is_promoter'])->count();
- $user_count = self::setWherePage(self::getModelTime($where, self::alias('a')->join('store_order r', 'r.uid=a.uid'), 'a.add_time'), $where, ['is_promoter'])
- ->where('r.paid', 1)->count('a.uid');
- $shop_xdata = ['多次购买数量占比', '无购买数量占比'];
- $shop_data = [];
- $count > 0 && $shop_data = [
- [
- 'value' => bcdiv($user_count, $count, 2) * 100,
- 'name' => $shop_xdata[0],
- 'itemStyle' => [
- 'color' => '#D789FF',
- ]
- ],
- [
- 'value' => bcdiv($count - $user_count, $count, 2) * 100,
- 'name' => $shop_xdata[1],
- 'itemStyle' => [
- 'color' => '#7EF0FB',
- ]
- ]
- ];
- return compact('shop_data', 'shop_xdata', 'fenbu_data', 'fenbu_xdata', 'seriesdata', 'xdata', 'Zoom');
- }
- //获取$date的前一天或者其他的时间段
- public static function getOldDate($where, $moedls = null)
- {
- $model = $moedls === null ? self::setWherePage(new self(), $where, ['is_promoter', 'status']) : $moedls;
- switch ($where['data']) {
- case 'today':
- $model = $model->whereTime('add_time', 'yesterday');
- break;
- case 'week':
- $model = $model->whereTime('add_time', 'last week');
- break;
- case 'month':
- $model = $model->whereTime('add_time', 'last month');
- break;
- case 'year':
- $model = $model->whereTime('add_time', 'last year');
- break;
- case 'quarter':
- $time = self::getMonth('n', 1);
- $model = $model->where('add_time', 'between', $time);
- break;
- }
- return $model;
- }
- //获取用户属性和性别分布图
- public static function getEchartsData($where)
- {
- $model = self::alias('a');
- $data = self::getModelTime($where, $model, 'a.add_time')
- ->join('wechat_user r', 'r.uid=a.uid')
- ->group('r.province')
- ->field('count(r.province) as count,province')
- ->order('count desc')
- ->limit(15)
- ->select();
- if (count($data)) $data = $data->toArray();
- $legdata = [];
- $dataList = [];
- foreach ($data as $value) {
- $value['province'] == '' && $value['province'] = '未知省份';
- $legdata[] = $value['province'];
- $dataList[] = $value['count'];
- }
- $model = self::alias('a');
- $sex = self::getModelTime($where, $model, 'a.add_time')
- ->join('wechat_user r', 'r.uid=a.uid')
- ->group('r.sex')
- ->field('count(r.uid) as count,sex')
- ->order('count desc')
- ->select();
- if (count($sex)) $sex = $sex->toArray();
- $sexlegdata = ['男', '女', '未知'];
- $sexcount = self::getModelTime($where, new self())->count();
- $sexList = [];
- $color = ['#FB7773', '#81BCFE', '#91F3FE'];
- foreach ($sex as $key => $item) {
- if ($item['sex'] == 1) {
- $item_date['name'] = '男';
- } else if ($item['sex'] == 2) {
- $item_date['name'] = '女';
- } else {
- $item_date['name'] = '未知性别';
- }
- $item_date['value'] = bcdiv($item['count'], $sexcount, 2) * 100;
- $item_date['itemStyle']['color'] = $color[$key];
- $sexList[] = $item_date;
- }
- return compact('sexList', 'sexlegdata', 'legdata', 'dataList');
- }
- //获取佣金记录列表
- public static function getCommissionList($where)
- {
- $list = self::setCommissionWhere($where)
- ->page((int)$where['page'], (int)$where['limit'])
- ->select();
- count($list) && $list = $list->toArray();
- foreach ($list as &$value) {
- $value['ex_price'] = db('user_extract')->where(['uid' => $value['uid']])->sum('extract_price');
- $value['extract_price'] = db('user_extract')->where(['uid' => $value['uid'], 'status' => 1])->sum('extract_price');
- }
- $count = self::setCommissionWhere($where)->count();
- return ['data' => $list, 'count' => $count];
- }
- //获取佣金记录列表的查询条件
- public static function setCommissionWhere($where)
- {
- $models = self::setWherePage(self::alias('A'), $where, [], ['A.nickname', 'A.uid'])
- ->join('user_bill B', 'B.uid=A.uid')
- ->group('A.uid')
- ->where(['B.category' => 'now_money'])
- ->where('B.type', 'in', ['brokerage','brokerage_return', 'rake_back_one', 'rake_back_two', 'rake_back'])
- ->field(['B.number', 'A.nickname', 'A.uid', 'A.now_money', 'A.brokerage_price']);
- if ($where['order'] == '') {
- $models = $models->order('A.brokerage_price desc');
- } else {
- $models = $models->order($where['order'] == 1 ? 'A.brokerage_price desc' : 'A.brokerage_price asc');
- }
- if ($where['price_max'] >0 && $where['price_min'] > 0) {
- $models = $models->where('A.brokerage_price', 'between', [$where['price_min'], $where['price_max']]);
- }
- return $models;
- }
- //获取某人用户推广信息
- public static function getUserinfo($uid)
- {
- $userinfo = self::where(['uid' => $uid])->field(['nickname', 'spread_uid', 'now_money', 'add_time'])->find()->toArray();
- $userinfo['number'] = UserBill::getCommissionAmount($uid);
- $userinfo['spread_name'] = $userinfo['spread_uid'] ? self::where(['uid' => $userinfo['spread_uid']])->value('nickname') : '';
- return $userinfo;
- }
- public static function getUserinfoV1($uid)
- {
- $userinfo = self::where(['uid' => $uid])->find()->toArray();
- $userinfo['spread_name'] = $userinfo['spread_uid'] ? self::where(['uid' => $userinfo['spread_uid']])->value('nickname') : '';
- $spread = self::where(['spread_uid' => $uid])->where('is_promoter', 'neq', 0)->column('uid');
- $userinfo['spread_count'] = count($spread);
- $userinfo['spread_one'] = UserBill::where(['o.paid' => 1, 'a.uid' => $uid, 'a.category' => 'now_money'])
- ->where('a.type', 'in', ['rake_back_one', 'rake_back'])->alias('a')->join('__STORE_ORDER__ o', 'a.link_id=o.id')->sum('o.pay_price');
- $userinfo['spread_two'] = UserBill::where(['o.paid' => 1, 'a.uid' => $uid, 'a.category' => 'now_money'])
- ->where('a.type', 'in', ['rake_back_two'])->alias('a')->join('__STORE_ORDER__ o', 'a.link_id=o.id')->sum('o.pay_price');
- $userinfo['grade_name'] = self::getDb('grade')->where('id', $userinfo['grade_id'])->value('name');
- $userinfo['bill_sum'] = UserBill::where(['category' => 'now_money', 'uid' => $userinfo['uid']])->where('type', 'in', ['rake_back_one', 'rake_back_two', 'rake_back'])->sum('number');
- return $userinfo;
- }
- public static function getPayPrice($uid, $type = ['rake_back_two'])
- {
- return UserBill::where(['o.paid' => 1, 'a.uid' => $uid, 'a.category' => 'now_money'])
- ->where('a.type', 'in', $type)->alias('a')->join('__STORE_ORDER__ o', 'a.link_id=o.id')->sum('o.pay_price');
- }
- public static function getLinkCount($uid, $type = ['rake_back_two'])
- {
- return UserBill::where(['o.paid' => 1, 'a.uid' => $uid, 'a.category' => 'now_money'])
- ->where('a.type', 'in', $type)->alias('a')->join('__STORE_ORDER__ o', 'a.link_id=o.id')->count();
- }
- public static function getSpreadListV1($where)
- {
- $spread = self::where(['spread_uid' => $where['uid']])->column('uid') ?: [0];
- $list = self::where('uid', 'in', $spread)->order('add_time desc')->page((int)$where['page'], (int)$where['limit'])->select();
- $list = count($list) ? $list->toArray() : [];
- foreach ($list as &$item) {
- $item['order_count'] = self::getLinkCount($item['uid'], ['rake_back_one', 'rake_back_two', 'rake_back']);
- $item['sum_pay_price'] = self::getPayPrice($item['uid'], ['rake_back_one', 'rake_back_two', 'rake_back']);
- $item['sum_number'] = UserBill::where('uid', $item['uid'])->where('category', 'now_money')->where('type', 'in', ['rake_back_one', 'rake_back_two', 'rake_back'])->sum('number');
- }
- return $list;
- }
- //获取某用户的详细信息
- public static function getUserDetailed($uid)
- {
- $gold_name=SystemConfigService::get('gold_name');//虚拟币名称
- $key_field = ['real_name', 'phone', 'province', 'city', 'district', 'detail', 'post_code'];
- $Address = ($thisAddress = db('user_address')->where(['uid' => $uid, 'is_default' => 1])->field($key_field)->find()) ?
- $thisAddress :
- db('user_address')->where(['uid' => $uid])->field($key_field)->find();
- $UserInfo = self::get($uid);
- $sex=WechatUser::where('uid',$uid)->value('sex');
- if ($sex == 1) {
- $UserInfo['sex'] = '男';
- } else if ($sex == 2) {
- $UserInfo['sex'] = '女';
- } else $UserInfo['sex'] = '保密';
- if ($UserInfo['last_time']) $UserInfo['last_time'] = date('Y-m-d H:i:s', $UserInfo['last_time']);//最近一次访问日期
- else $UserInfo['last_time'] = '无访问';//最近一次访问日期
- $UserInfo['add_time'] =date('Y-m-d H:i:s', $UserInfo['add_time']);
- $time='首次:'.$UserInfo['add_time'].'最近:'.$UserInfo['last_time'];
- return [
- ['col' => 12, 'name' => '默认收货地址', 'value' => $thisAddress ? '收货人:' . $thisAddress['real_name']. ' 收货人电话:' . $thisAddress['phone'] . ' 地址:' . $thisAddress['province'] . ' ' . $thisAddress['city'] . ' ' . $thisAddress['district'] . ' ' . $thisAddress['detail'] : ''],
- ['name'=>'ID','value'=>$uid],
- ['name' => '手机号码', 'value' => $UserInfo['phone']],
- ['name' => '微信昵称', 'value' => $UserInfo['nickname']],
- ['name' => '性别', 'value' => $UserInfo['sex']],
- ['name' => '购买次数', 'value' => StoreOrder::getUserCountPay($uid)],
- ['name' => '访问日期', 'value' => $time],
- ['name' => "$gold_name".'余额', 'value' => $UserInfo['gold_num']],
- ['name' => '上级推广人', 'value' => $UserInfo['spread_uid'] ? self::where(['uid' => $UserInfo['spread_uid']])->value('nickname') : ''],
- ['name' => '账户余额', 'value' => $UserInfo['now_money']],
- ['name' => '佣金总收入', 'value' => UserBill::getCommissionAmount($uid)],
- ['name' => '提现总金额', 'value' => db('user_extract')->where(['uid' => $uid, 'status' => 1])->sum('extract_price')],
- ];
- }
- //获取某用户的订单个数,消费明细
- public static function getHeaderList($uid)
- {
- return [
- [
- 'title' => '总计订单',
- 'value' => StoreOrder::where(['uid' => $uid, 'paid' => 1])->count(),
- 'key' => '笔',
- 'class' => '',
- ],
- [
- 'title' => '总消费金额',
- 'value' => StoreOrder::where(['uid' => $uid, 'paid' => 1])->sum('pay_price'),
- 'key' => '元',
- 'class' => '',
- ],
- [
- 'title' => '本月订单',
- 'value' => StoreOrder::where(['uid' => $uid, 'paid' => 1])->whereTime('add_time', 'month')->count(),
- 'key' => '笔',
- 'class' => '',
- ],
- [
- 'title' => '本月消费金额',
- 'value' => StoreOrder::where(['uid' => $uid, 'paid' => 1])->whereTime('add_time', 'month')->sum('pay_price'),
- 'key' => '元',
- 'class' => '',
- ]
- ];
- }
- /*
- * 获取 会员 订单个数,积分明细,优惠劵明细
- *
- * $uid 用户id;
- *
- * return array
- */
- public static function getCountInfo($uid)
- {
- $order_count = StoreOrder::where(['uid' => $uid])->count();
- $integral_count = UserBill::where(['uid' => $uid, 'category' => 'integral'])->where('type', 'in', ['deduction', 'system_add'])->count();
- $sign_count = UserBill::where(['uid' => $uid, 'category' => 'integral', 'type' => 'sign'])->count();
- $balanceChang_count = UserBill::where(['uid' => $uid, 'category' => 'now_money'])
- ->where('type', 'in', ['system_add', 'pay_product', 'extract','extract_fail','pay_goods','pay_sign_up', 'pay_product_refund', 'system_sub'])
- ->count();
- $coupon_count = 0;
- $spread_count = self::where(['spread_uid' => $uid])->count();
- $pay_count = self::getDb('special_buy')->where('uid', $uid)->where('is_del', 0)->count();
- return compact('order_count', 'integral_count', 'sign_count', 'balanceChang_count', 'coupon_count', 'spread_count', 'pay_count');
- }
- /*
- * 获取 会员业务的
- * 购物会员统计
- * 会员访问量
- *
- * 曲线图
- *
- * $where 查询条件
- *
- * return array
- */
- public static function getUserBusinessChart($where, $limit = 20)
- {
- //获取购物会员人数趋势图
- $list = self::getModelTime($where, self::where('a.status', 1)->alias('a')->join('store_order r', 'r.uid=a.uid'), 'a.add_time')
- ->where(['r.paid' => 1, 'a.is_promoter' => 0])
- ->where('a.add_time', 'neq', 0)
- ->field(['FROM_UNIXTIME(a.add_time,"%Y-%m-%d") as _add_time', 'count(r.uid) as count_user'])
- ->group('_add_time')
- ->order('_add_time asc')
- ->select();
- count($list) && $list = $list->toArray();
- $seriesdata = [];
- $xdata = [];
- $zoom = '';
- foreach ($list as $item) {
- $seriesdata[] = $item['count_user'];
- $xdata[] = $item['_add_time'];
- }
- count($xdata) > $limit && $zoom = $xdata[$limit - 5];
- //会员访问量
- $visit = self::getModelTime($where, self::alias('a')->join('store_visit t', 't.uid=a.uid'), 't.add_time')
- ->where('a.is_promoter', 0)
- ->field(['FROM_UNIXTIME(t.add_time,"%Y-%m-%d") as _add_time', 'count(t.uid) as count_user'])
- ->group('_add_time')
- ->order('_add_time asc')
- ->select();
- count($visit) && $visit = $visit->toArray();
- $visit_data = [];
- $visit_xdata = [];
- $visit_zoom = '';
- foreach ($visit as $item) {
- $visit_data[] = $item['count_user'];
- $visit_xdata[] = $item['_add_time'];
- }
- count($visit_xdata) > $limit && $visit_zoom = $visit_xdata[$limit - 5];
- //多次购物会员数量饼状图
- $count = self::getModelTime($where, self::where('is_promoter', 0))->count();
- $user_count = self::getModelTime($where, self::alias('a')->join('store_order r', 'r.uid=a.uid'), 'a.add_time')
- ->where('a.is_promoter', 0)
- ->where('r.paid', 1)
- ->group('a.uid')
- ->count();
- $shop_xdata = ['多次购买数量占比', '无购买数量占比'];
- $shop_data = [];
- $count > 0 && $shop_data = [
- [
- 'value' => bcdiv($user_count, $count, 2) * 100,
- 'name' => $shop_xdata[0],
- 'itemStyle' => [
- 'color' => '#D789FF',
- ]
- ],
- [
- 'value' => bcdiv($count - $user_count, $count, 2) * 100,
- 'name' => $shop_xdata[1],
- 'itemStyle' => [
- 'color' => '#7EF0FB',
- ]
- ]
- ];
- return compact('seriesdata', 'xdata', 'zoom', 'visit_data', 'visit_xdata', 'visit_zoom', 'shop_data', 'shop_xdata');
- }
- /*
- * 获取用户
- * 积分排行
- * 会员余额排行榜
- * 分销商佣金总额排行榜
- * 购物笔数排行榜
- * 购物金额排行榜
- * 分销商佣金提现排行榜
- * 上月消费排行榜
- * $limit 查询多少条
- * return array
- */
- public static function getUserTop10List($limit = 10, $is_promoter = 0)
- {
- //积分排行
- $integral = self::where('status', 1)
- ->where('is_promoter', $is_promoter)
- ->order('integral desc')
- ->field(['nickname', 'phone', 'integral', 'FROM_UNIXTIME(add_time,"%Y-%m-%d") as add_time'])
- ->limit($limit)
- ->select();
- count($integral) && $integral = $integral->toArray();
- //会员余额排行榜
- $now_money = self::where('status', 1)
- ->where('is_promoter', $is_promoter)
- ->order('now_money desc')
- ->field(['nickname', 'phone', 'now_money', 'FROM_UNIXTIME(add_time,"%Y-%m-%d") as add_time'])
- ->limit($limit)
- ->select();
- count($now_money) && $now_money = $now_money->toArray();
- //购物笔数排行榜
- $shopcount = self::alias('a')
- ->join('store_order r', 'r.uid=a.uid')
- ->where(['r.paid' => 1, 'a.is_promoter' => $is_promoter])
- ->group('r.uid')
- ->field(['a.nickname', 'a.phone', 'count(r.uid) as sum_count', 'FROM_UNIXTIME(a.add_time,"%Y-%m-%d") as add_time'])
- ->order('sum_count desc')
- ->limit($limit)
- ->select();
- count($shopcount) && $shopcount = $shopcount->toArray();
- //购物金额排行榜
- $order = self::alias('a')
- ->join('store_order r', 'r.uid=a.uid')
- ->where(['r.paid' => 1, 'a.is_promoter' => $is_promoter])
- ->group('r.uid')
- ->field(['a.nickname', 'a.phone', 'sum(r.pay_price) as sum_price', 'FROM_UNIXTIME(a.add_time,"%Y-%m-%d") as add_time', 'r.uid'])
- ->order('sum_price desc')
- ->limit($limit)
- ->select();
- count($order) && $order = $order->toArray();
- //上月消费排行
- $lastorder = self::alias('a')
- ->join('store_order r', 'r.uid=a.uid')
- ->where(['r.paid' => 1, 'a.is_promoter' => $is_promoter])
- ->whereTime('r.pay_time', 'last month')
- ->group('r.uid')
- ->field(['a.nickname', 'a.phone', 'sum(r.pay_price) as sum_price', 'FROM_UNIXTIME(a.add_time,"%Y-%m-%d") as add_time', 'r.uid'])
- ->order('sum_price desc')
- ->limit($limit)
- ->select();
- return compact('integral', 'now_money', 'shopcount', 'order', 'lastorder');
- }
- /*
- * 获取 会员业务
- * 会员总余额 会员总积分
- * $where 查询条件
- *
- * return array
- */
- public static function getUserBusinesHeade($where)
- {
- return [
- [
- 'name' => '会员总余额',
- 'field' => '元',
- 'count' => self::getModelTime($where, self::where('status', 1))->sum('now_money'),
- 'background_color' => 'layui-bg-cyan',
- 'col' => 6,
- ],
- [
- 'name' => '会员总积分',
- 'field' => '分',
- 'count' => self::getModelTime($where, self::where('status', 1))->sum('integral'),
- 'background_color' => 'layui-bg-cyan',
- 'col' => 6
- ]
- ];
- }
- /*
- * 分销会员头部信息查询获取
- *
- * 分销商总佣金余额
- * 分销商总提现佣金
- * 本月分销商业务佣金
- * 本月分销商佣金提现金额
- * 上月分销商业务佣金
- * 上月分销商佣金提现金额
- * $where array 时间条件
- *
- * return array
- */
- public static function getDistributionBadgeList($where)
- {
- return [
- [
- 'name' => '分销商总佣金',
- 'field' => '元',
- 'count' => self::getModelTime($where, UserBill::where('category', 'now_money')->where('type', 'brokerage'))->where('uid', 'in', function ($query) {
- $query->name('user')->where('status', 1)->where('is_promoter', 1)->whereOr('spread_uid', 'neq', 0)->field('uid');
- })->sum('number'),
- 'background_color' => 'layui-bg-cyan',
- 'col' => 3,
- ],
- [
- 'name' => '分销商总佣金余额',
- 'field' => '元',
- 'count' => self::getModelTime($where, self::where('status', 1)->where('is_promoter', 1))->sum('now_money'),
- 'background_color' => 'layui-bg-cyan',
- 'col' => 3,
- ],
- [
- 'name' => '分销商总提现佣金',
- 'field' => '元',
- 'count' => self::getModelTime($where, UserExtract::where('status', 1))->sum('extract_price'),
- 'background_color' => 'layui-bg-cyan',
- 'col' => 3,
- ],
- [
- 'name' => '本月分销商业务佣金',
- 'field' => '元',
- 'count' => self::getModelTime(['data' => 'month'], UserBill::where('category', 'now_money')->where('type', 'brokerage'))
- ->where('uid', 'in', function ($query) {
- $query->name('user')->where('status', 1)->where('is_promoter', 1)->whereOr('spread_uid', 'neq', 0)->field('uid');
- })->sum('number'),
- 'background_color' => 'layui-bg-cyan',
- 'col' => 3,
- ],
- [
- 'name' => '本月分销商佣金提现金额',
- 'field' => '元',
- 'count' => self::getModelTime(['data' => 'month'], UserExtract::where('status', 1))
- ->where('uid', 'in', function ($query) {
- $query->name('user')->where('status', 1)->where('is_promoter', 1)->field('uid');
- })->sum('extract_price'),
- 'background_color' => 'layui-bg-cyan',
- 'col' => 4,
- ],
- [
- 'name' => '上月分销商业务佣金',
- 'field' => '元',
- 'count' => self::getOldDate(['data' => 'year'], UserBill::where('category', 'now_money')->where('uid', 'in', function ($query) {
- $query->name('user')->where('status', 1)->where('is_promoter', 1)->whereOr('spread_uid', 'neq', 0)->field('uid');
- })->where('type', 'brokerage'))->sum('number'),
- 'background_color' => 'layui-bg-cyan',
- 'col' => 4,
- ],
- [
- 'name' => '上月分销商佣金提现金额',
- 'field' => '元',
- 'count' => self::getOldDate(['data' => 'year'], UserBill::where('category', 'now_money')->where('uid', 'in', function ($query) {
- $query->name('user')->where('status', 1)->where('is_promoter', 1)->whereOr('spread_uid', 'neq', 0)->field('uid');
- })->where('type', 'brokerage'))->sum('number'),
- 'background_color' => 'layui-bg-cyan',
- 'col' => 4,
- ],
- ];
- }
- /*
- * 分销会员
- * 分销数量 饼状图
- * 分销商会员访问量 曲线
- * 获取购物会员人数趋势图 曲线
- * 多次购物分销会员数量 饼状图
- * $where array 条件
- * $limit int n条数据后出拖动条
- * return array
- */
- public static function getUserDistributionChart($where, $limit = 20)
- {
- //分销数量
- $fenbu_user = self::getModelTime($where, new self)->field(['count(uid) as num'])->group('is_promoter')->select();
- count($fenbu_user) && $fenbu_user = $fenbu_user->toArray();
- $sum_user = 0;
- $fenbu_data = [];
- $fenbu_xdata = ['分销商', '非分销商'];
- $color = ['#81BCFE', '#91F3FE'];
- foreach ($fenbu_user as $item) {
- $sum_user += $item['num'];
- }
- foreach ($fenbu_user as $key => $item) {
- $value['value'] = bcdiv($item['num'], $sum_user, 2) * 100;
- $value['name'] = isset($fenbu_xdata[$key]) ? $fenbu_xdata[$key] . ' %' . $value['value'] : '';
- $value['itemStyle']['color'] = $color[$key];
- $fenbu_data[] = $value;
- }
- //分销商会员访问量
- $visit = self::getModelTime($where, self::alias('a')->join('store_visit t', 't.uid=a.uid'), 't.add_time')
- ->where('a.is_promoter', 1)
- ->field(['FROM_UNIXTIME(t.add_time,"%Y-%m-%d") as _add_time', 'count(t.uid) as count_user'])
- ->group('_add_time')
- ->order('_add_time asc')
- ->select();
- count($visit) && $visit = $visit->toArray();
- $visit_data = [];
- $visit_xdata = [];
- $visit_zoom = '';
- foreach ($visit as $item) {
- $visit_data[] = $item['count_user'];
- $visit_xdata[] = $item['_add_time'];
- }
- count($visit_xdata) > $limit && $visit_zoom = $visit_xdata[$limit - 5];
- //获取购物会员人数趋势图
- $list = self::getModelTime($where, self::where('a.status', 1)->alias('a')->join('store_order r', 'r.uid=a.uid'), 'a.add_time')
- ->where(['r.paid' => 1, 'a.is_promoter' => 1])
- ->where('a.add_time', 'neq', 0)
- ->field(['FROM_UNIXTIME(a.add_time,"%Y-%m-%d") as _add_time', 'count(r.uid) as count_user'])
- ->group('_add_time')
- ->order('_add_time asc')
- ->select();
- count($list) && $list = $list->toArray();
- $seriesdata = [];
- $xdata = [];
- $zoom = '';
- foreach ($list as $item) {
- $seriesdata[] = $item['count_user'];
- $xdata[] = $item['_add_time'];
- }
- count($xdata) > $limit && $zoom = $xdata[$limit - 5];
- //多次购物分销会员数量饼状图
- $count = self::getModelTime($where, self::where('is_promoter', 1))->count();
- $user_count = self::getModelTime($where, self::alias('a')
- ->join('store_order r', 'r.uid=a.uid'), 'a.add_time')
- ->where('a.is_promoter', 1)
- ->where('r.paid', 1)
- ->group('a.uid')
- ->count();
- $shop_xdata = ['多次购买数量占比', '无购买数量占比'];
- $shop_data = [];
- $count > 0 && $shop_data = [
- [
- 'value' => bcdiv($user_count, $count, 2) * 100,
- 'name' => $shop_xdata[0] . $user_count . '人',
- 'itemStyle' => [
- 'color' => '#D789FF',
- ]
- ],
- [
- 'value' => bcdiv($count - $user_count, $count, 2) * 100,
- 'name' => $shop_xdata[1] . ($count - $user_count) . '人',
- 'itemStyle' => [
- 'color' => '#7EF0FB',
- ]
- ]
- ];
- return compact('fenbu_data', 'fenbu_xdata', 'visit_data', 'visit_xdata', 'visit_zoom', 'seriesdata', 'xdata', 'zoom', 'shop_xdata', 'shop_data');
- }
- /*
- * 分销商佣金提现排行榜
- * 分销商佣金总额排行榜
- * $limit 截取条数
- * return array
- */
- public static function getUserDistributionTop10List($limit)
- {
- //分销商佣金提现排行榜
- $extract = self::alias('a')
- ->join('user_extract t', 'a.uid=t.uid')
- ->where(['t.status' => 1, 'a.is_promoter' => 1])
- ->group('t.uid')
- ->field(['a.nickname', 'a.phone', 'sum(t.extract_price) as sum_price', 'FROM_UNIXTIME(a.add_time,"%Y-%m-%d") as add_time', 't.uid'])
- ->order('sum_price desc')
- ->limit($limit)
- ->select();
- count($extract) && $extract = $extract->toArray();
- //分销商佣金总额排行榜
- $commission = UserBill::alias('l')
- ->join('user a', 'l.uid=a.uid')
- ->where(['l.status' => '1', 'l.category' => 'now_money', 'l.type' => 'brokerage', 'a.is_promoter' => 1])
- ->group('l.uid')
- ->field(['a.nickname', 'a.phone', 'sum(number) as sum_number', 'FROM_UNIXTIME(a.add_time,"%Y-%m-%d") as add_time'])
- ->order('sum_number desc')
- ->limit($limit)
- ->select();
- count($commission) && $commission = $commission->toArray();
- return compact('extract', 'commission');
- }
- public static function getSpreadList($uid, $page, $limit)
- {
- $list = self::where(['spread_uid' => $uid])->field(['uid', 'nickname', 'now_money', 'gold_num', 'add_time'])
- ->order('uid desc')->page((int)$page, (int)$limit)->select();
- count($list) && $list = $list->toArray();
- foreach ($list as &$item) {
- $item['add_time'] = date('Y-m-d H', $item['add_time']);
- }
- return $list;
- }
- /**
- * 设置推广人查询条件
- * @param $where
- * @param string $alias
- * @param int $spread_type
- * @param null $model
- * @return $this
- */
- public static function setSpreadBadgeWhere($where, $alias = '', $spread_type = 0, $model = null)
- {
- $model = is_null($model) ? new self() : $model;
- $alias = $alias ? $alias . '.' : '';
- if ($spread_type) $where['spread_type'] = $spread_type;
- if ($where['nickname'] && ($uids = self::where('nickname|phone|uid', 'like', "%$where[nickname]%")->column('uid'))) {
- $model = $model->where($alias . 'spread_uid', 'in', $uids);
- }
- if ($where['phone']) $model = $model->where("{$alias}nickname|{$alias}phone", 'like', "%$where[phone]%");
- if ($where['start_time'] && $where['stop_time']) {
- $model = $model->whereTime("{$alias}add_time", 'between', [$where['start_time'], $where['stop_time']]);
- }
- $storeBrokerageStatu = SystemConfigService::get('store_brokerage_statu') ?: 1;//获取后台分销类型
- if ($storeBrokerageStatu == 1) {
- $model = $model->where("{$alias}is_promoter", 1);
- }
- return $model;
- }
- public static function getextractPrice($uid, $where = [])
- {
- if (is_array($uid)) {
- if (!count($uid)) return 0;
- } else
- $uid = [$uid];
- $brokerage = UserBill::getBrokerage($uid, 'now_money', 'brokerage', $where);//获取总佣金
- $return = UserBill::getReturnBrokerage($uid, 'now_money', 'brokerage_return', $where);//获取返还佣金
- $brokerage=bcsub($brokerage,$return,2);
- $recharge = UserBill::getBrokerage($uid, 'now_money', 'recharge', $where);//累计充值
- $extractTotalPrice = UserExtract::userExtractTotalPrice($uid, 1, $where);//累计提现
- if ($brokerage > $extractTotalPrice) {
- $orderYuePrice = self::getModelTime($where, StoreOrder::where('uid', 'in', $uid)->where(['is_del' => 0, 'paid' => 1]))->sum('pay_price');//余额累计消费
- $systemAdd = UserBill::getBrokerage($uid, 'now_money', 'system_add', $where);//后台添加余额
- $yueCount = bcadd($recharge, $systemAdd, 2);// 后台添加余额 + 累计充值 = 非佣金的总金额
- $orderYuePrice = $yueCount > $orderYuePrice ? 0 : bcsub($orderYuePrice, $yueCount, 2);// 余额累计消费(使用佣金消费的金额)
- $brokerage = bcsub($brokerage, $extractTotalPrice, 2);//减去已提现金额
- $extract_price = UserExtract::userExtractTotalPrice($uid, 0, $where);
- $brokerage = $extract_price < $brokerage ? bcsub($brokerage, $extract_price, 2) : 0;//减去审核中的提现金额
- $brokerage = $brokerage > $orderYuePrice ? bcsub($brokerage, $orderYuePrice, 2) : 0;//减掉余额支付
- } else {
- $brokerage = 0;
- }
- $num = (float)bcsub($brokerage, $extractTotalPrice, 2);
- return $num > 0 ? $num : 0;//可提现
- }
- /**
- * @param $where
- * @return array
- */
- public static function getSpreadBadgeList($where)
- {
- $bill = new UserBill();
- return [
- [
- 'name' => '一级佣金',
- 'field' => '元',
- 'count' => self::setSpreadBadgeWhere($where, 'a', 1)->alias('a')->join('__USER_BILL__ u', 'a.uid=u.uid')
- ->where(['u.category' => 'now_money', 'u.type' => 'rake_back_one'])->sum('u.number'),
- 'background_color' => 'layui-bg-blue',
- 'col' => 2
- ],
- [
- 'name' => '一级订单',
- 'field' => '元',
- 'count' => self::setSpreadBadgeWhere($where, 'r', 0, $bill)->join('__USER__ r', 'r.uid=a.uid')->alias('a')->join('__STORE_ORDER__ u', 'a.link_id=u.id')->where('u.paid', 1)->sum('u.pay_price'),
- 'background_color' => 'layui-bg-blue',
- 'col' => 2
- ],
- [
- 'name' => '二级佣金',
- 'field' => '元',
- 'count' => self::setSpreadBadgeWhere($where, 'a')->alias('a')->join('__USER_BILL__ u', 'u.uid=a.uid')
- ->where(['u.category' => 'now_money'])->where('u.type', 'rake_back_two')->sum('u.number'),
- 'background_color' => 'layui-bg-blue',
- 'col' => 2
- ],
- ];
- }
- /**
- * 获取推广人列表
- * @param array $where 查询条件
- * @return array
- * */
- public static function SpreadList($where)
- {
- $model = self::setSpreadBadgeWhere($where)->field('phone,uid,nickname,add_time,spread_uid,is_promoter,is_senior');
- if ($where['export']) $data = $model->select();
- else $data = $model->page((int)$where['page'], (int)$where['limit'])->select();
- $data = count($data) ? $data->toArray() : [];
- foreach ($data as &$item) {
- $item['spread_nickname'] = self::where('uid', $item['spread_uid'])->value('nickname');
- $item['spread_name'] = '普通';
- //直推订单
- $uids = User::where('spread_uid', $item['uid'])->column('uid');
- if (count($uids)) {
- $item['sum_pay_price'] = StoreOrder::whereIn('uid', $uids)->sum('pay_price');
- $ids = User::whereIn('spread_uid', $uids)->column('uid');
- if (count($ids)) {
- $item['pay_price'] = StoreOrder::whereIn('uid', $ids)->sum('pay_price');
- }
- } else {
- $item['sum_pay_price'] = 0;
- $item['pay_price'] = 0;
- }
- unset($ids, $uids);
- $item['rake_back'] =UserBill::getCommissionAmount($item['uid']);
- $item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
- }
- if ($where['export']) self::SaveExcel($data);
- $count = self::setSpreadBadgeWhere($where)->count();
- return compact('data', 'count');
- }
- /*
- * 保存并下载excel
- * $list array
- * return
- */
- public static function SaveExcel($list)
- {
- $export = [];
- foreach ($list as $index => $item) {
- $export[] = [
- $item['spread_name'],
- $item['nickname'],
- $item['spread_nickname'],
- $item['phone'],
- $item['add_time'],
- $item['sum_pay_price'],
- $item['rake_back'],
- ];
- }
- PHPExcelService::setExcelHeader(['推广人身份', '昵称', '所属上级', '手机号码', '加入时间', '订单金额', '佣金'])
- ->setExcelTile('推广人列表导出', '推广人信息' . time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
- ->setExcelContent($export)
- ->ExcelSave();
- }
- public static function guestWhere($where, $guest, $model = null)
- {
- if ($model == null) $model = new self;
- if (isset($where['guest_name']) && $where['guest_name'] != '') $model = $model->where('nickname|uid', 'LIKE', "%$where[guest_name]%");
- $model = $model->where('uid', 'IN', $guest->guest);
- return $model;
- }
- }
|