Update Assets locations when user's location changes whey they got bulk-edited

This commit is contained in:
Ivan Nieto Vivanco 2022-04-06 19:23:49 -05:00
parent 8195a664a9
commit e1927aa154

View file

@ -108,6 +108,12 @@ class BulkUsersController extends Controller
User::whereIn('id', $user_raw_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
if ($request->filled('groups')) {
foreach ($users as $user) {