Rename owner to processor in job order list
This commit is contained in:
parent
1d0aaa211a
commit
141212d4e6
2 changed files with 4 additions and 4 deletions
|
|
@ -257,7 +257,7 @@ class JobOrderController extends BaseController
|
||||||
$row['status'] = $statuses[$orow->getStatus()];
|
$row['status'] = $statuses[$orow->getStatus()];
|
||||||
$row['flag_advance'] = $orow->isAdvanceOrder();
|
$row['flag_advance'] = $orow->isAdvanceOrder();
|
||||||
|
|
||||||
$row['owner'] = $orow->getProcessedBy()->getFullName();
|
$row['processor'] = $orow->getProcessedBy()->getFullName();
|
||||||
|
|
||||||
// add crud urls
|
// add crud urls
|
||||||
$row['meta']['update_url'] = $this->generateUrl($tier_params['edit_route'], ['id' => $row['id']]);
|
$row['meta']['update_url'] = $this->generateUrl($tier_params['edit_route'], ['id' => $row['id']]);
|
||||||
|
|
|
||||||
|
|
@ -94,8 +94,8 @@
|
||||||
title: 'Status'
|
title: 'Status'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
field: 'owner',
|
field: 'processor',
|
||||||
title: 'Owner'
|
title: 'Processor'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
field: 'Actions',
|
field: 'Actions',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue