|
|
@@ -281,7 +281,7 @@ def shot_request_send(request, administrator):
|
281
|
281
|
req.request_status_at = request_status_at
|
282
|
282
|
req.save()
|
283
|
283
|
|
284
|
|
- TenancyShotInfo.objects.filter(shot_id=request.shot_id).update(tenancy_status=1)
|
|
284
|
+ TenancyShotInfo.objects.filter(shot_id=req.shot_id).update(tenancy_status=1)
|
285
|
285
|
|
286
|
286
|
if tracking_number and tracking_number != old_tracking_number:
|
287
|
287
|
tenancy_tracking_info_subscribe(req, 'tracking')
|
|
|
@@ -308,7 +308,7 @@ def shot_request_signed(request, administrator):
|
308
|
308
|
req.request_status_at = request_status_at
|
309
|
309
|
req.save()
|
310
|
310
|
|
311
|
|
- TenancyShotInfo.objects.filter(shot_id=request.shot_id).update(tenancy_status=0)
|
|
311
|
+ TenancyShotInfo.objects.filter(shot_id=req.shot_id).update(tenancy_status=0)
|
312
|
312
|
|
313
|
313
|
return response(data={
|
314
|
314
|
'req': req.admindata,
|