wupengfei 2 年之前
父節點
當前提交
d485ef33bc

+ 1 - 1
application/purchase/controller/Depot.php

@@ -32,7 +32,7 @@ class Depot extends PurBase
     {
         $this->title = '仓库列表';
         $this->admin_arr =SystemUser::column('username','id');
-        $this->admin_arr[0] = '总后台';
+        $this->admin_arr[0] = 'admin';
         $where = [];
         $where[] = ['is_deleted','=',0];
         if($this->admin_authorize) $where[] = ['depot_user','=',$this->admin_user['id']];

+ 1 - 1
application/purchase/controller/EntryLog.php

@@ -33,7 +33,7 @@ class EntryLog extends PurBase
         $this->title = '列表';
         $order_id = input('id');
         $this->admin_arr =SystemUser::column('username','id');
-        $this->admin_arr[0] = '总后台';
+        $this->admin_arr[0] = 'admin';
         $query = $this->_query($this->table)
             ->field('d.*,g.name as goods_name ,i.goods_spec,g.cover')
             ->alias('d')

+ 1 - 1
application/purchase/controller/SupplierOrder.php

@@ -35,7 +35,7 @@ class SupplierOrder extends PurBase
         $this->title = '供货订单列表';
         $this->supplier = Db::name('Supplier')->where('is_deleted',0)->column('name','id');
         $this->admin_arr =SystemUser::column('username','id');
-        $this->admin_arr[0] = '总后台';
+        $this->admin_arr[0] = 'admin';
         $where = [];
         $where[] = ['is_deleted','=',0];
         if($this->admin_authorize == 1) $where[] = ['employee_user','=',$this->admin_user['id']];