Merge pull request #12885 from inietov/fixes/error_call_member_function_totalSeatsByLicenseID
Fixed Call to a member function totalSeatsByLicenseID() on null
This commit is contained in:
commit
c3c22fae3c
1 changed files with 12 additions and 10 deletions
|
@ -234,6 +234,12 @@ class LicensesController extends Controller
|
||||||
public function show($licenseId = null)
|
public function show($licenseId = null)
|
||||||
{
|
{
|
||||||
$license = License::with('assignedusers')->find($licenseId);
|
$license = License::with('assignedusers')->find($licenseId);
|
||||||
|
|
||||||
|
if (!$license) {
|
||||||
|
return redirect()->route('licenses.index')
|
||||||
|
->with('error', trans('admin/licenses/message.does_not_exist'));
|
||||||
|
}
|
||||||
|
|
||||||
$users_count = User::where('autoassign_licenses', '1')->count();
|
$users_count = User::where('autoassign_licenses', '1')->count();
|
||||||
$total_seats_count = $license->totalSeatsByLicenseID();
|
$total_seats_count = $license->totalSeatsByLicenseID();
|
||||||
$available_seats_count = $license->availCount()->count();
|
$available_seats_count = $license->availCount()->count();
|
||||||
|
@ -245,17 +251,13 @@ class LicensesController extends Controller
|
||||||
\Log::debug('Checkedout: '.$checkedout_seats_count);
|
\Log::debug('Checkedout: '.$checkedout_seats_count);
|
||||||
|
|
||||||
|
|
||||||
if ($license) {
|
|
||||||
$this->authorize('view', $license);
|
$this->authorize('view', $license);
|
||||||
return view('licenses.view', compact('license'))
|
return view('licenses.view', compact('license'))
|
||||||
->with('users_count', $users_count)
|
->with('users_count', $users_count)
|
||||||
->with('total_seats_count', $total_seats_count)
|
->with('total_seats_count', $total_seats_count)
|
||||||
->with('available_seats_count', $available_seats_count)
|
->with('available_seats_count', $available_seats_count)
|
||||||
->with('checkedout_seats_count', $checkedout_seats_count);
|
->with('checkedout_seats_count', $checkedout_seats_count);
|
||||||
}
|
|
||||||
|
|
||||||
return redirect()->route('licenses.view')
|
|
||||||
->with('error', trans('admin/licenses/message.does_not_exist'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue