diff --git a/Application/Home/Controller/BaseController.class.php b/Application/Home/Controller/BaseController.class.php index fae35173b..ea09d5dc0 100644 --- a/Application/Home/Controller/BaseController.class.php +++ b/Application/Home/Controller/BaseController.class.php @@ -404,6 +404,15 @@ class BaseController extends HomeController } } + $closePromoteLowest = [334]; + if (in_array($topPromote['company_id'], $closePromoteLowest)) { + if ($topPromote['can_view_recharge'] == 1 && $promote['level'] != 4) { + return true; + } else { + return false; + } + } + if ($topPromote['can_view_recharge'] == 1) { return true; }