浏览代码

新版本信息上传检查设备版本信息

linhaohong 6 月之前
父节点
当前提交
c619ffd3f5
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      AdminController/VersionManagementController.py

+ 2 - 0
AdminController/VersionManagementController.py

@@ -201,6 +201,8 @@ class VersionManagement(View):
                     for chunk in file.chunks():
                         write_file.write(chunk)
                 LOGGER.info('versionManagement/upLoadFile成功上传{}'.format(file_name))
+                if not DeviceVersionInfo.objects.filter(d_code=code, software_ver=softwareVersion).exists():
+                    return response.json(0, "该版本尚未添加设备版本信息")
                 return response.json(0)
         except Exception as e:
             LOGGER.info(