fix: 编辑计划任务和病毒扫描告警问题处理 (#7047)

Refs #7039
This commit is contained in:
2024-11-14 16:15:47 +08:00 committed by GitHub
parent 1858cb4df8
commit bfa667584a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 22 additions and 18 deletions

View File

@ -249,6 +249,7 @@ func (c *ClamService) Update(req dto.ClamUpdate) error {
if err := clamRepo.Update(req.ID, upMap); err != nil {
return err
}
if req.AlertCount != 0 {
updateAlert := dto.CreateOrUpdateAlert{
AlertTitle: req.AlertTitle,
AlertType: "clams",
@ -259,6 +260,7 @@ func (c *ClamService) Update(req dto.ClamUpdate) error {
if err != nil {
return err
}
}
return nil
}

View File

@ -316,6 +316,7 @@ func (u *CronjobService) Update(id uint, req dto.CronjobUpdate) error {
if err != nil {
return err
}
if req.AlertCount != 0 {
updateAlert := dto.CreateOrUpdateAlert{
AlertTitle: req.AlertTitle,
AlertType: cronModel.Type,
@ -326,6 +327,7 @@ func (u *CronjobService) Update(id uint, req dto.CronjobUpdate) error {
if err != nil {
return err
}
}
return nil
}