Commit 946d330c by 纪旭 韦

修复手工录入下拉菜单获取数据的角色判断

parent 51c87ad8
......@@ -1334,7 +1334,7 @@ public List<GatherDropResponse> GetGatherDrop(Gather gather)
if (userrole == null) throw new PerformanceException("用户未绑定角色");
var roles = new int[] { (int)Role.医院管理员, (int)Role.绩效管理员, (int)Role.绩效核算办 };
if (!roles.Contains(userrole.RoleID))
if (roles.Contains(userrole.RoleID))
{
var types = new[] { (int)SheetType.OtherIncome, (int)SheetType.Expend, (int)SheetType.Workload, (int)SheetType.SpecialUnit };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment