后台修改

This commit is contained in:
彭桃 2023-02-11 17:11:44 +08:00
parent 732479d6b3
commit a508227a84

View File

@ -73,7 +73,6 @@ class Analysis extends BaseController
//加工企业和品牌企业数量
$map[] = ['a.type_id','in','2,3'];
$list['num_1'] = Db::connect('shop')->table('eb_merchant')->alias('a')->join('eb_merchant_address b','a.mer_id = b.mer_id')->where($mmm)->where($map)->count();
//企业通过我们平台采购的农产品
$list['num_3'] = Db::connect('shop')->table('eb_user')->alias('a')->join('eb_nk_user b','a.uid = b.user_id')->join('eb_product_order_log c','a.uid = c.uid')->join('nk_lihaink_cn.fa_szxc_information_useraddress d','b.n_user_id = d.user_id')->where($www)->where('a.status',1)->where('c.status',1)->count();
@ -87,8 +86,8 @@ class Analysis extends BaseController
//权限组信息
$mmm = $www = $where = [];
if ($this->adminInfo['group_access'] != 1) { //不是超级管理员
$www['admin_id'] = $this->adminInfo['id'];
$user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find();
$www2['admin_id'] = $this->adminInfo['id'];
$user_address = Db::table('fa_szxc_information_useraddress')->where($www2)->find();
if ($user_address) {
if ($user_address['auth_range'] == 1) {
@ -126,6 +125,7 @@ class Analysis extends BaseController
}
$map[] = ['a.status','=',1];
$map[] = ['a.is_del','=',0];
//企业农产品销量
$list['num_2'] = Db::connect('shop')->table('eb_product_order_log')->where($where)->where('status',1)->where('mer_type_id','in','2,3')->count();