mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 14:09:43 -08:00
Merge pull request #10914 from inietov/fixes/bulk_user_edit_not_updating_asset_locations_develop
Fixes Bulk user edit not updating checked out asset locations
This commit is contained in:
commit
8218b5ef47
|
@ -108,6 +108,12 @@ class BulkUsersController extends Controller
|
||||||
User::whereIn('id', $user_raw_array)
|
User::whereIn('id', $user_raw_array)
|
||||||
->where('id', '!=', Auth::id())->update($this->update_array);
|
->where('id', '!=', Auth::id())->update($this->update_array);
|
||||||
|
|
||||||
|
if(array_key_exists('location_id', $this->update_array)){
|
||||||
|
Asset::where('assigned_type', User::class)
|
||||||
|
->whereIn('assigned_to', $user_raw_array)
|
||||||
|
->update(['location_id' => $this->update_array['location_id']]);
|
||||||
|
}
|
||||||
|
|
||||||
// Only sync groups if groups were selected
|
// Only sync groups if groups were selected
|
||||||
if ($request->filled('groups')) {
|
if ($request->filled('groups')) {
|
||||||
foreach ($users as $user) {
|
foreach ($users as $user) {
|
||||||
|
|
Loading…
Reference in a new issue