Browse Source

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

chenjunkai 6 năm trước cách đây
mục cha
commit
c6889d8aca
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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: