瀏覽代碼

删除共享获得设备改为更新新isExist=0

chenjunkai 6 年之前
父節點
當前提交
c6889d8aca
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Controller/DeviceShare.py

+ 1 - 1
Controller/DeviceShare.py

@@ -139,7 +139,7 @@ class DeviceShareView(View):
         id = request_dict.get('id', None)
         if id:
             try:
-                Device_Info.objects.filter(id=id, primaryUserID=userID).delete()
+                Device_Info.objects.filter(id=id, primaryUserID=userID).update(isExist=0)
             except Exception as e:
                 return response.json(10, repr(e))
             else: