Browse Source

忽略已处理处理

WH01243 1 year ago
parent
commit
4ff368eecb
1 changed files with 2 additions and 0 deletions
  1. 2 0
      api/internal/service/employService.go

+ 2 - 0
api/internal/service/employService.go

@@ -427,10 +427,12 @@ func (e *EmPloyService) IgnoreOperate(in *types.IgnoreOperateReq) {
 		if in.IsIgnore {
 			MC.CrmMysql.Update(table, findMap, map[string]interface{}{
 				"is_ignore": 1,
+				"is_handle": 1,
 			})
 		} else {
 			MC.CrmMysql.Update(table, findMap, map[string]interface{}{
 				"is_ignore": 0,
+				"is_handle": 1,
 			})
 		}
 	}