rm conditional that might be unnecessary

This commit is contained in:
spencerrlongg 2024-08-12 16:58:53 -05:00
parent cc3b8e0681
commit ec863df007

View file

@ -266,11 +266,11 @@ class UsersController extends Controller
$user->location_id = $request->input('location_id', null); $user->location_id = $request->input('location_id', null);
if ($request->has('company_id')) { if ($request->has('company_id')) {
if ($user->assets->count() > 0) { if ($user->assets->count() > 0) {
if ($user->assets()->pluck('company_id') != $user->getRawOriginal('company_id')) { //if ($user->assets()->pluck('company_id') != $user->getRawOriginal('company_id')) {
{ {
return back()->with('error', 'this user has assets, check them in first'); return back()->with('error', 'this user has assets, check them in first');
} }
} //}
} }
} }
$user->company_id = Company::getIdForUser($request->input('company_id', null)); $user->company_id = Company::getIdForUser($request->input('company_id', null));