diff --git a/app/admin/controller/Index.php b/app/admin/controller/Index.php index f52e584..80c66f6 100644 --- a/app/admin/controller/Index.php +++ b/app/admin/controller/Index.php @@ -12,6 +12,10 @@ namespace app\admin\controller; use app\admin\BaseController; use think\facade\Db; use think\facade\View; +use app\admin\model\ShopUser; +use app\admin\model\InformationUserMsg; +use app\admin\model\InformationUserAddress; +use app\admin\model\GeoStreet; class Index extends BaseController { @@ -43,38 +47,41 @@ class Index extends BaseController } public function main() - { - // return json($this->adminInfo); - $street_id = Db::table('fa_szxc_information_useraddress') - ->where('admin_id',$this->adminInfo['id']) - ->value('street_id'); + { + // 镇街表id + $street_id = InformationUserAddress::where('admin_id',$this->adminInfo['id'])->value('street_id'); + // 街道名称 + $street_name = GeoStreet::where('street_code', $street_id)->value('street_name'); + + // 大屏相关 + if ($this->adminInfo['group_access'] == 4){ - // return $street_id; - $street_name = Db::table('fa_geo_street') - ->where('street_code',$street_id) - ->value('street_name'); - - if ($this->adminInfo['group_access']==4){ $urls="http://zhen.lihaink.cn/#/?street_id=$street_id"."&street_name=".$street_name; View::assign('urls',$urls); return View('main3'); - }elseif($this->adminInfo['group_access']==5){ + + }elseif($this->adminInfo['group_access'] == 5){ + $day_price=Db::connect('shop')->table('eb_product_order_log')->where('street_id',$street_id) ->where('status',1) ->whereDay('create_time') ->sum('product_price'); + $day_order=Db::connect('shop')->table('eb_product_order_log')->where('street_id',$street_id) ->where('status',1) ->whereDay('create_time') ->count(); + $Month_price=Db::connect('shop')->table('eb_product_order_log')->where('street_id',$street_id) ->where('status',1) ->whereMonth('create_time') ->sum('product_price'); + $Month_order=Db::connect('shop')->table('eb_product_order_log')->where('street_id',$street_id) ->where('status',1) ->whereMonth('create_time') ->count(); + $urls="http://zhenqiye.lihaink.cn/#/?street_id=$street_id"."&street_name=".$street_name; View::assign('urls',$urls); View::assign('day_order',$day_order); @@ -83,10 +90,17 @@ class Index extends BaseController View::assign('month_order',$Month_order); return View('main2'); } - if ($this->adminInfo['id']!=1){ - $find = Db::table('fa_szxc_information_useraddress')->where('user_id', $this->adminInfo['user_id'])->find(); - if ($find) { - if ($find['auth_range']==1){ + + // 如果登录ID不是超管的话 + if ($this->adminInfo['id'] != 1){ + + // 获取当当前登录用户绑定地址 + $find = InformationUserAddress::where('user_id', $this->adminInfo['user_id'])->find(); + + if($find) + { + // 所属市镇区县村级别 + if ($find['auth_range'] == 1){ $where[] = ['village_id', '=', $find['village_id']]; }elseif ($find['auth_range']==2){ $where[] = ['street_id', '=', $find['street_id']]; @@ -96,49 +110,60 @@ class Index extends BaseController $where[] = ['brigade_id', '=', $find['brigade_id']]; } } + }else{ $where=[]; } - $num =Db::table('fa_szxc_information_usermsg')->where($where)->count(); -// 大于60岁人数 - $old_num = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('>=', 60)->count(); -// 儿童人数 - $children_num = Db::table('fa_szxc_information_usermsg')->where($where)->whereAge('<', 15)->count(); -// 未婚男 - $unmarried_man_num = Db::table('fa_szxc_information_usermsg')->where($where)->where([['gender', '=', 1], ['marital_status', '=', 169]])->count(); -// 未婚女 - $unmarried_woman_num = Db::table('fa_szxc_information_usermsg')->where($where)->where([['gender', '=', 2], ['marital_status', '=', 169]])->count(); -// 少数民族 - $nation_s_num = Db::table('fa_szxc_information_usermsg')->where($where)->whereBetween('nation', [13, 68])->count(); -// 汉族 - $nation_h_num = Db::table('fa_szxc_information_usermsg')->where($where)->where('nation', 12)->count(); + // 获取**数量 + $num = InformationUserMsg::where($where)->count(); + + // 大于60岁人数 + $old_num = InformationUserMsg::where($where)->whereAge('>=', 60)->count(); + + // 儿童人数 + $children_num = InformationUserMsg::where($where)->whereAge('<', 15)->count(); + // 未婚男 + $unmarried_man_num = InformationUserMsg::where($where)->where($where)->where([['gender', '=', 1], ['marital_status', '=', 169]])->count(); + // 未婚女 + $unmarried_woman_num = InformationUserMsg::where($where)->where($where)->where([['gender', '=', 2], ['marital_status', '=', 169]])->count(); + // 少数民族 + $nation_s_num = InformationUserMsg::where($where)->where($where)->whereBetween('nation', [13, 68])->count(); + // 汉族 + $nation_h_num = InformationUserMsg::where($where)->where($where)->where('nation', 12)->count(); // foreach ($where as $key =>$value){ // $where[$key][0] = 'm.'.$value[0]; // } - // 残疾人数 + + // 残疾人数 $whether_disabled_num = Db::table('fa_szxc_information_usermsg') ->alias('m') ->where($where) ->join(['fa_szxc_information_insurance'=>'i'],'m.user_id=i.user_id and i.whether_disabled!=112')->count(); -// 参保人数 + + // 参保人数 $insurance_type_num = Db::table('fa_szxc_information_usermsg') ->alias('m') ->where($where) ->join(['fa_szxc_information_insurance'=>'i'],'m.user_id=i.user_id and i.insurance_type!=219')->count(); - if ($this->adminInfo['id']!=1){ - // 工作人员数 - $work_num = Db::table('fa_szxc_information_usermsg') - ->alias('m') - ->where($where) - ->join(['shop.eb_user'=>'u'],'m.user_id=u.id and u.group_id = 3')->count(); + $work_num = InformationUsermsg::with('user')->count(); + + if ($this->adminInfo['id'] != 1){ + + // 工作人员数 + $work_num = InformationUsermsg::with('user')->where($where)->count(); + + // $work_num = Db::table('fa_szxc_information_usermsg') + // ->alias('m') + // ->join(['shop.eb_user'=>'u'],'m.user_id=u.id and u.group_id = 3') + // ->count(); + }else{ - $work_num = Db::connect('shop')->table('eb_user') - ->where('group_id',3) - ->count(); + $work_num = ShopUser::where('group_id', 3)->count(); } + //土地 $land_area_num = Db::table('fa_szxc_information_useraddress') ->alias('u') diff --git a/app/admin/controller/nk/Spread.php b/app/admin/controller/nk/Spread.php index 3dd4c33..8ea02f2 100644 --- a/app/admin/controller/nk/Spread.php +++ b/app/admin/controller/nk/Spread.php @@ -7,6 +7,10 @@ use think\exception\ValidateException; use think\facade\Db; use app\admin\controller\nk\Article; use think\facade\View; +use app\admin\model\ShopUser; +use app\admin\model\InformationUserMsg; +use app\admin\model\InformationUserAddress; +use app\admin\model\SupplyBrokerage as SupplyBrokerageModel; /** * 佣金管理 @@ -30,26 +34,112 @@ class Spread extends BaseController */ public function index() { - $nk_user=Db::connect('shop')->name('nk_user')->where('n_user_id',$this->adminInfo['id'])->value('user_id'); - $total=0; - $list=[]; - $brokerage_price=Db::connect('shop')->name('user')->where('uid',$nk_user)->value('brokerage_price'); + $total = 0; + $list = []; + $mmm = []; + $map = []; + $post = get_params(); + + //权限组信息 + if ($this->adminInfo['group_access'] != 1) { + + $find = InformationUserAddress::where('admin_id', $this->adminInfo['id'])->find(); + if ($find) { + if ($find['auth_range'] == 1) { + $mmm['area_id'] = $find['area_id']; + + $mmm['street_id'] = $find['street_id']; + $mmm['village_id'] = $find['village_id']; + } elseif ($find['auth_range'] == 2) { + $mmm['area_id'] = $find['area_id']; + $mmm['street_id'] = $find['street_id']; + }elseif ($find['auth_range'] == 5) { + $mmm['area_id'] = $find['area_id']; + $mmm['street_id'] = $find['street_id']; + $mmm['village_id'] = $find['village_id']; + $mmm['brigade_id'] = $find['brigade_id']; + } + } + } + + + if ($post) { + if (isset($post['area_id']) && !empty($post['area_id'])) { + $mmm['area_id'] = $post['area_id']; + } + if (isset($post['street_id']) && !empty($post['street_id'])) { + $mmm['street_id'] = $post['street_id']; + } + if (isset($post['village_id']) && !empty($post['village_id'])) { + $mmm['village_id'] = $post['village_id']; + } + if (isset($post['brigade_id']) && !empty($post['brigade_id'])) { + $mmm['brigade_id'] = $post['brigade_id']; + } + } if (request()->isAjax()) { - $params= get_params(); - if ($nk_user!=0){ - $list=Db::connect('shop')->name('store_order')->where('spread_uid',$nk_user) - ->where('status',3) - ->field('uid,order_sn,pay_time,extension_one,extension_two,is_selfbuy') - ->page($params['page']) - ->limit($params['limit']) - ->select(); + + if (!empty($post['keywords'])) { + $map[] = ['m.name', 'LIKE', '%' . $post['keywords'] . '%']; } + + if (!empty($post['phone'])) { + + $map[] = ['m.phone', 'LIKE', '%' . $post['phone'] . '%']; + } + + // 获取当前地域成员 + $userList = InformationUserMsg::where($mmm) + ->where($map) + ->with(['user']) + ->select(); + + $arrUid = []; + foreach ($userList as $v) { + + // 如果存在服务小组的话,则取出 + if($v['user']['fa_supply_team_id']) + { + $arrUid[] = $v['user']['uid']; + } + } + + $params= get_params(); + + $list = SupplyBrokerageModel::whereIn('user_id', $arrUid) + ->with(['user', 'merchant', 'supplyChain', 'level']) + ->page($params['page']) + ->limit($params['limit']) + ->select(); + $result = ['total' => $total, 'data' => $list]; + return table_assign(0, '', $result); + } - View::assign('brokerage_price', $brokerage_price); - return view('',['url'=>$this->url]); + + // 获取当前地域成员 + $userList = InformationUserMsg::where($mmm) + ->where($map) + ->with(['user']) + ->select(); + + $arrUid = []; + foreach ($userList as $v) { + + // 如果存在服务小组的话,则取出 + if($v['user']['fa_supply_team_id']) + { + $arrUid[] = $v['user']['uid']; + } + } + + // 总佣金 + $borkerageSum = SupplyBrokerageModel::whereIn('user_id', $arrUid)->sum('brokerage_price'); + + View::assign('brokerage_price', $borkerageSum); + return view('',['url' => $this->url]); } /** * 查看信息 diff --git a/app/admin/controller/nk/User.php b/app/admin/controller/nk/User.php index 7a3b2a5..10b13dd 100644 --- a/app/admin/controller/nk/User.php +++ b/app/admin/controller/nk/User.php @@ -32,30 +32,35 @@ class User extends BaseController '/admin/nk.user/postedit', ]; } + /** * 查看 */ public function index() { if (request()->isAjax()) { + $mmm = []; $map = []; $post = get_params(); + if (!empty($post['keywords'])) { $map[] = ['m.name', 'LIKE', '%' . $post['keywords'] . '%']; } + if (!empty($post['phone'])) { $map[] = ['m.phone', 'LIKE', '%' . $post['phone'] . '%']; } + //权限组信息 if ($this->adminInfo['group_access'] != 1) { - $find = Db::table('fa_szxc_information_useraddress')->where('admin_id', $this->adminInfo['id'])->find(); - + $find = InformationUserAddress::where('admin_id', $this->adminInfo['id'])->find(); if ($find) { if ($find['auth_range'] == 1) { $mmm['area_id'] = $find['area_id']; + $mmm['street_id'] = $find['street_id']; $mmm['village_id'] = $find['village_id']; } elseif ($find['auth_range'] == 2) { @@ -69,6 +74,7 @@ class User extends BaseController } } } + if ($post) { if (isset($post['area_id']) && !empty($post['area_id'])) { $mmm['area_id'] = $post['area_id']; @@ -88,11 +94,13 @@ class User extends BaseController $total = InformationUserMsg::alias('m') ->where($mmm) ->where($map) + ->where('user_id', '<>', $this->adminInfo['user_id']) ->count(); $list = InformationUserMsg::alias('m') ->where($mmm) ->where($map) + ->where('user_id', '<>', $this->adminInfo['user_id']) // ->join(['shop.eb_user' => 'u'], 'm.user_id=u.uid')u.avatar,u.group_id,u.status, ->with(['user.userGroup']) // ->field('m.user_id id,m.name,m.phone,m.gender,m.age,m.householder_id,m.user_id') diff --git a/app/admin/model/SupplyBrokerage.php b/app/admin/model/SupplyBrokerage.php index c6539fa..ae87a6e 100644 --- a/app/admin/model/SupplyBrokerage.php +++ b/app/admin/model/SupplyBrokerage.php @@ -11,6 +11,16 @@ class SupplyBrokerage extends Model // 设置当前模型对应的完整数据表名称 protected $table = 'fa_supply_brokerage'; + /** + * + * 关联用户信息 + * + */ + public function user() + { + return $this->hasOne(ShopUser::class, 'uid', 'user_id'); + } + /** * 关联商户 * diff --git a/app/admin/view/nk/spread/index.html b/app/admin/view/nk/spread/index.html index b564ee4..95813db 100644 --- a/app/admin/view/nk/spread/index.html +++ b/app/admin/view/nk/spread/index.html @@ -56,12 +56,6 @@