Resolve "Resq - message prompt for non-serviceable area" #1353

Merged
korina.cordero merged 176 commits from 463-resq-message-prompt-for-non-serviceable-area into 465-resq-august-13-release 2020-08-12 05:41:57 +00:00
Showing only changes of commit 2b13adffa0 - Show all commits

View file

@ -707,6 +707,12 @@ class CMBRiderAPIHandler implements RiderAPIHandlerInterface
$after_images['others'] = $other_images;
}
// customer email
if ($jo->getMeta('customer_email') == null)
$cust_email = '';
else
$cust_email = $jo->getMeta('customer_email');
$data = [
'id' => $jo->getID(),
'service_type' => $jo->getServiceType(),
@ -758,6 +764,9 @@ class CMBRiderAPIHandler implements RiderAPIHandlerInterface
'arrive_photos' => $before_images,
'finish_photos' => $after_images,
// customer email
'customer_email' => $cust_email,
// END: cmb speicifc details
];