Fixed custom report bug if assignedTo has no value

This commit is contained in:
snipe 2017-11-06 10:42:34 -08:00
parent 4818e1b8ca
commit 936ff707c7

View file

@ -582,7 +582,12 @@ class ReportsController extends Controller
if (e(Input::get('username')) == '1') {
// Only works if we're checked out to a user, not anything else.
if ($asset->checkedOutToUser()) {
$row[] = '"' .e($asset->assignedto->username). '"';
if ($asset->assignedto) {
$row[] = '"' .e($asset->assignedto->username). '"';
} else {
$row[] = ''; // Empty string if unassigned
}
} else {
$row[] = ''; // Empty string if unassigned
}