...
|
...
|
@@ -2,6 +2,7 @@ package service |
|
|
|
|
|
import (
|
|
|
"fmt"
|
|
|
"log"
|
|
|
"time"
|
|
|
|
|
|
"github.com/linmadan/egglib-go/core/application"
|
...
|
...
|
@@ -130,9 +131,11 @@ func (noticeSettingService *NoticeSettingService) UpdateNoticeSetting(updateNoti |
|
|
"orgId": updateNoticeSettingCommand.OrgId,
|
|
|
"moduleAction": updateNoticeSettingCommand.ModuleAction,
|
|
|
})
|
|
|
log.Println("+++++======>", updateNoticeSettingCommand)
|
|
|
if err != nil {
|
|
|
return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, err.Error())
|
|
|
}
|
|
|
|
|
|
if len(noticeSettings) > 1 {
|
|
|
return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "配置信息重复")
|
|
|
}
|
...
|
...
|
@@ -140,7 +143,7 @@ func (noticeSettingService *NoticeSettingService) UpdateNoticeSetting(updateNoti |
|
|
//存在旧的数据
|
|
|
noticeSetting = noticeSettings[0]
|
|
|
if noticeSetting.NoticeSettingId != updateNoticeSettingCommand.NoticeSettingId {
|
|
|
return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "配置信息已存在")
|
|
|
return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "该环节配置已存在")
|
|
|
}
|
|
|
}
|
|
|
noticeSetting, err = noticeSettingRepository.FindOne(map[string]interface{}{
|
...
|
...
|
@@ -152,8 +155,6 @@ func (noticeSettingService *NoticeSettingService) UpdateNoticeSetting(updateNoti |
|
|
err = noticeSetting.Update(map[string]interface{}{
|
|
|
"content": updateNoticeSettingCommand.Content,
|
|
|
"isPush": updateNoticeSettingCommand.IsPush,
|
|
|
"module": updateNoticeSettingCommand.Module,
|
|
|
"moduleAction": updateNoticeSettingCommand.ModuleAction,
|
|
|
"updatedAt": time.Now(),
|
|
|
})
|
|
|
if err != nil {
|
...
|
...
|
|