Blame view

美国版/Food Labeling Management Platform/src/lib/categoryScopeAccess.ts 481 Bytes
91821909   杨鑫   最新
1
2
3
4
5
6
7
8
9
10
11
12
13
  import { canMutateAccountManagementStructure } from "./accountManagementAccess";
  
  /**
   * 表单中 Company / Region / Location 级联:
   * 平台系统管理员需手选公司;其它角色仅选区域与门店(公司由账号绑定自动带入)。
   */
  export function isSystemAdminForCategoryScope(params: {
    roleCodes?: string[] | null;
    permissionCodes?: string[] | null;
    userName?: string | null;
  }): boolean {
    return canMutateAccountManagementStructure(params);
  }