|
@@ -517,7 +517,8 @@ class DeviceManagement(View):
|
|
|
# Order_Model.objects.filter(UID__in=uidList, order_type=0).delete()
|
|
|
Device_Info.objects.filter(UID__in=uidList).update(vodPrimaryUserID='', vodPrimaryMaster='')
|
|
|
# 删除用户UID缓存
|
|
|
- threading.Thread(target=DeviceManagement.deleteDeviceCache, args=uidList)
|
|
|
+ thread = threading.Thread(target=DeviceManagement.deleteDeviceCache, args=(uidList,))
|
|
|
+ thread.start()
|
|
|
# 上传序列号文件且选中序列号解绑uid
|
|
|
# if serialNumberList is not None and '序列号解绑uid' in delDataOptions:
|
|
|
# # 解绑uid数据
|