|
|
@@ -281,6 +281,8 @@ 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)
|
|
285
|
+
|
284
|
286
|
if tracking_number and tracking_number != old_tracking_number:
|
285
|
287
|
tenancy_tracking_info_subscribe(req, 'tracking')
|
286
|
288
|
|
|
|
@@ -306,6 +308,8 @@ def shot_request_signed(request, administrator):
|
306
|
308
|
req.request_status_at = request_status_at
|
307
|
309
|
req.save()
|
308
|
310
|
|
|
311
|
+ TenancyShotInfo.objects.filter(shot_id=request.shot_id).update(tenancy_status=0)
|
|
312
|
+
|
309
|
313
|
return response(data={
|
310
|
314
|
'req': req.admindata,
|
311
|
315
|
})
|