diff --git a/app/Models/LicenseSeat.php b/app/Models/LicenseSeat.php index 397a141468..9bd9a66cfa 100755 --- a/app/Models/LicenseSeat.php +++ b/app/Models/LicenseSeat.php @@ -127,6 +127,7 @@ class LicenseSeat extends SnipeModel implements ICompanyableChild return $query->leftJoin('users as license_seat_users', 'license_seats.assigned_to', '=', 'license_seat_users.id') ->leftJoin('departments as license_user_dept', 'license_user_dept.id', '=', 'license_seat_users.department_id') ->whereNotNull('license_seats.assigned_to') + ->whereNotNull('license_user_dept.id') ->orderBy('license_user_dept.name', $order); } }