Add null check to user on detailed rejection report #800
This commit is contained in:
parent
4be9134090
commit
22683e1edf
1 changed files with 1 additions and 1 deletions
|
|
@ -244,7 +244,7 @@ class ReportController extends Controller
|
||||||
JORejectionReason::getName($jor->getReason()),
|
JORejectionReason::getName($jor->getReason()),
|
||||||
$jor->getContactPerson(),
|
$jor->getContactPerson(),
|
||||||
$jor->getRemarks(),
|
$jor->getRemarks(),
|
||||||
$jor->getUser()->getFullName(),
|
!empty($jor->getUser()) ? $jor->getUser()->getFullName() : "",
|
||||||
ServiceType::getName($jo->getServiceType()),
|
ServiceType::getName($jo->getServiceType()),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue