|
@@ -2,6 +2,7 @@ package service
|
|
|
|
|
|
import (
|
|
|
"fmt"
|
|
|
+ systemDao "iot_manager_service/app/system/dao"
|
|
|
systemService "iot_manager_service/app/system/service"
|
|
|
"iot_manager_service/app/warn/dao"
|
|
|
"iot_manager_service/app/warn/model"
|
|
@@ -98,9 +99,8 @@ func (s noticeSetService) Update(post model.NoticeUpdateData, tenantId int) erro
|
|
|
BusinessNoticeModesName: post.ShowBusinessTypeName,
|
|
|
DevUserIds: post.NoticeOperationMan,
|
|
|
BusinessUserIds: post.NoticeBusinessMan,
|
|
|
-
|
|
|
- DevUserIdsName: s.getUserName(post.NoticeOperationMan),
|
|
|
- BusinessUserIdsName: s.getUserName(post.NoticeBusinessMan),
|
|
|
+ DevUserIdsName: s.getUserName(post.NoticeOperationMan),
|
|
|
+ BusinessUserIdsName: s.getUserName(post.NoticeBusinessMan),
|
|
|
}
|
|
|
return set.UpdateOrSave()
|
|
|
}
|
|
@@ -154,18 +154,54 @@ func (s noticeSetService) getUserName(ids string) string {
|
|
|
fm[v] = i
|
|
|
}
|
|
|
userList, _ := systemService.UserService.List("", "", 0, 1000)
|
|
|
- new := []string{}
|
|
|
+ var nameList []string
|
|
|
for _, detail := range userList {
|
|
|
id := strconv.Itoa(int(detail.ID))
|
|
|
if _, ok := fm[id]; ok {
|
|
|
- new = append(new, detail.Name)
|
|
|
+ nameList = append(nameList, detail.Name)
|
|
|
}
|
|
|
}
|
|
|
- return strings.Join(new, ",")
|
|
|
+ return strings.Join(nameList, ",")
|
|
|
}
|
|
|
|
|
|
-func (s noticeSetService) Remove(id string, tenant_id int) error {
|
|
|
- fmt.Printf("id = %v", id)
|
|
|
- noticeSet := dao.NoticeSet{DeviceSn: id, TenantId: strconv.Itoa(tenant_id)}
|
|
|
+func (s noticeSetService) Remove(id string, tenantId int) error {
|
|
|
+ noticeSet := dao.NoticeSet{DeviceSn: id, TenantId: strconv.Itoa(tenantId)}
|
|
|
return noticeSet.Delete()
|
|
|
}
|
|
|
+
|
|
|
+// GetReceiveList 查出接收人
|
|
|
+func (s noticeSetService) GetReceiveList(deviceType int, sn string, armSource int) (map[string]model.ReceiveList, error) {
|
|
|
+ list, _ := dao.NoticeSet{}.GetNoticeList(deviceType, sn)
|
|
|
+ receives := make(map[string]model.ReceiveList)
|
|
|
+ for _, set := range list {
|
|
|
+ userIds := set.BusinessUserIds //接收用户
|
|
|
+ noticeModes := set.BusinessNoticeModes //接收的通知方式
|
|
|
+ if armSource == 1 {
|
|
|
+ userIds = set.DevUserIds
|
|
|
+ noticeModes = set.DevUserNoticeModes
|
|
|
+ }
|
|
|
+ usersArr := strings.Split(userIds, ",")
|
|
|
+ noticeModesArr := strings.Split(noticeModes, ",")
|
|
|
+
|
|
|
+ for _, userId := range usersArr {
|
|
|
+ var user systemDao.User
|
|
|
+ parseInt, _ := strconv.ParseInt(userId, 10, 64)
|
|
|
+ user.ID = parseInt
|
|
|
+ user.GetUser()
|
|
|
+ for _, noticeModeStr := range noticeModesArr {
|
|
|
+ noticeModeNum, _ := strconv.ParseInt(noticeModeStr, 10, 64)
|
|
|
+ account := user.Email
|
|
|
+ if noticeModeStr == "1" {
|
|
|
+ account = user.Phone
|
|
|
+ }
|
|
|
+ receives[userId+noticeModeStr] = model.ReceiveList{
|
|
|
+ NoticeSetId: int(set.ID),
|
|
|
+ UserName: user.Name,
|
|
|
+ NoticeMode: int(noticeModeNum),
|
|
|
+ NoticeReceiveAccount: account,
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return receives, nil
|
|
|
+}
|