Add Battery Facilitated By column in View All. #443

This commit is contained in:
Korina Cordero 2020-07-28 06:48:40 +00:00
parent 886ed94d88
commit ed0eefc1d8
2 changed files with 10 additions and 0 deletions

View file

@ -183,6 +183,12 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
else
$row['assignor'] = $orow->getAssignedBy()->getFullName();
$hub_facilitated = $orow->getFacilitatedBy();
if ($hub_facilitated == null)
$row['hub_facilitated'] = '';
else
$row['hub_facilitated'] = $orow->getFacilitatedBy()->getName();
$rows[] = $row;
}

View file

@ -116,6 +116,10 @@
field: 'delivery_address',
title: 'Customer Area'
},
{
field: 'hub_facilitated',
title: 'Battery Facilitated By'
},
{
field: 'type',
title: 'Schedule'