Explorar o código

修复ai更改状态时,没有勾选标签时,标签不变的错误

lang %!s(int64=3) %!d(string=hai) anos
pai
achega
d628e63e75
Modificáronse 1 ficheiros con 2 adicións e 4 borrados
  1. 2 4
      Controller/AiController.py

+ 2 - 4
Controller/AiController.py

@@ -154,8 +154,7 @@ class AiView(View):
                 }
                 if interval:
                     qs_data['detect_interval'] = int(interval)
-                if detect_group:
-                    qs_data['detect_group'] = detect_group
+                    qs_data['detect_group'] = detect_group if detect_group else ''
                 uid_set_qs.update(**qs_data)
             else:
                 qs_data = {
@@ -165,8 +164,7 @@ class AiView(View):
                 }
                 if interval:
                     qs_data['detect_interval'] = int(interval)
-                if detect_group:
-                    qs_data['detect_group'] = detect_group
+                qs_data['detect_group'] = detect_group if detect_group else ''
                 # 添加设备配置
                 uid_set_qs = UidSetModel.objects.create(**qs_data)
                 uid_set_id = uid_set_qs.id