Commit 45233c8f by shiwenbo

改造remindByPermissions接口获取当前区域公司的逻辑

parent 8574cbff
......@@ -59,8 +59,9 @@ public class DinasCommonServiceImpl implements DinasCommonService {
kobject.validate();
List<String> noticePerson = new ArrayList<String>();// 获取提醒人员
String privilegeName = data.getString("privilegeId");// 功能权限
String regionalCompanyId = data.getString("regionalCompanyId");
List<UUID> staffList = dinasOrganizationService
.queryStaffByRegionalCompanyForMessage(dinasOrganizationService.getCurrentRegionalCompanyId());
.queryStaffByRegionalCompanyForMessage(UUID.fromString(regionalCompanyId));
for (UUID staffId : staffList) {
KObject staff = staffService.getById(staffId);
List<Identity> list = identityService.getByUser(staff.get("user").getUuid("id"));
......
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