Merge branch '678-fix-color-coding-issues' into 'master'

Resolve "Fix color coding issues"

Closes #678

See merge request jankstudio/resq!792
This commit is contained in:
Kendrick Chan 2022-06-07 03:14:58 +00:00
commit 50ce917a1a

View file

@ -188,10 +188,11 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
$service_types = ServiceType::getCollection();
// process rows
$is_vip = false;
$is_emergency = false;
$rows = [];
foreach ($obj_rows as $orow) {
$is_vip = false;
$is_emergency = false;
// check if customer is vip
$cust_class = $orow->getCustomer()->getCustomerClassification();
if ($cust_class == CustomerClassification::VIP)
@ -201,7 +202,7 @@ class ResqJobOrderHandler implements JobOrderHandlerInterface
$will_not_wait = $orow->getWillWait();
if ($will_not_wait == WillingToWaitContent::NOT_WILLING_TO_WAIT)
$is_emergency = true;
// add row data
$row['id'] = $orow->getID();
$row['customer_name'] = $orow->getCustomer()->getFirstName() . ' ' . $orow->getCustomer()->getLastName();