mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-23 11:43:47 -08:00
Add a boolean variable and condition to handle the call to checkedOutToUser() method
This commit is contained in:
parent
a49d3fe131
commit
9cbd2d032c
|
@ -1021,7 +1021,12 @@ class ReportsController extends Controller
|
||||||
|
|
||||||
$assetsForReport = $acceptances
|
$assetsForReport = $acceptances
|
||||||
->filter(function ($acceptance) {
|
->filter(function ($acceptance) {
|
||||||
return $acceptance->checkoutable_type == 'App\Models\Asset' && $acceptance->checkoutable->checkedOutToUser();
|
$acceptance_checkoutable_flag = false;
|
||||||
|
if ($acceptance->checkoutable){
|
||||||
|
$acceptance_checkoutable_flag = $acceptance->checkoutable->checkedOutToUser();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $acceptance->checkoutable_type == 'App\Models\Asset' && $acceptance_checkoutable_flag;
|
||||||
})
|
})
|
||||||
->map(function($acceptance) {
|
->map(function($acceptance) {
|
||||||
return ['assetItem' => $acceptance->checkoutable, 'acceptance' => $acceptance];
|
return ['assetItem' => $acceptance->checkoutable, 'acceptance' => $acceptance];
|
||||||
|
|
Loading…
Reference in a new issue