From 08d129c2ea4393e9468f57123a760f2f277f5346 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 2 Feb 2018 09:36:40 -0600 Subject: [PATCH] Fixed #4951 - updating asset location in bulk edit --- app/Http/Controllers/AssetsController.php | 4 +++- resources/views/hardware/bulk.blade.php | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/app/Http/Controllers/AssetsController.php b/app/Http/Controllers/AssetsController.php index 875243d0db..e65025ae13 100755 --- a/app/Http/Controllers/AssetsController.php +++ b/app/Http/Controllers/AssetsController.php @@ -1130,12 +1130,14 @@ class AssetsController extends Controller if ($request->has('warranty_months')) { $update_array['warranty_months'] = $request->input('warranty_months'); } + + if ($request->has('rtd_location_id')) { $update_array['rtd_location_id'] = $request->input('rtd_location_id'); if (($request->has('update_real_loc')) && (($request->input('update_real_loc')) == '1')) { - $update_array['location_id'] = $request->input('location_id'); + $update_array['location_id'] = $request->input('rtd_location_id'); } } diff --git a/resources/views/hardware/bulk.blade.php b/resources/views/hardware/bulk.blade.php index 8207e95715..079cb0c3f5 100755 --- a/resources/views/hardware/bulk.blade.php +++ b/resources/views/hardware/bulk.blade.php @@ -62,8 +62,8 @@