shish il y a 3 ans
Parent
commit
73069c0d4a
1 fichiers modifiés avec 2 ajouts et 3 suppressions
  1. 2 3
      app-ghs/controllers/ShopController.php

+ 2 - 3
app-ghs/controllers/ShopController.php

@@ -289,11 +289,10 @@ class ShopController extends BaseController
     //切换门店 lqh 2021.1.31
     public function actionToggleShop()
     {
-
-        //惠雅鲜花员工不能切换门店
+        //惠雅、昱成员工不能切换门店
         $shopAdmin = $this->shopAdmin;
         $adminId = $shopAdmin->adminId ?? 0;
-        if (in_array($adminId, [2812, 3539, 3735, 3407])) {
+        if (in_array($adminId, [2812, 3539, 3735, 3407, 9602])) {
             util::fail('暂无权限');
         }