Merge branch '162-phase-2-changes' into 'master'

Resolve "Phase 2 changes"

Closes #162

See merge request jankstudio/resq!193
This commit is contained in:
Kendrick Chan 2018-09-23 07:55:33 +00:00
commit 1bebad9335
3 changed files with 21 additions and 3 deletions

View file

@ -96,6 +96,15 @@ Can you deliver anywhere in the Philippines?
Not yet. Res-Q is offered initially in Metro Manila only.
</p>
<h2 style="font-weight: bold; font-size: 40px;">
My battery was pulled out and is being recharged in an outlet. How do I follow-up when I can take my battery back?
</h2>
<p>
Please call our hotline at (02) 370-6686.
</p>
<h2 style="font-weight: bold; font-size: 40px;">
How do I contact you for questions or feedback?
</h2>
@ -110,6 +119,14 @@ In case of overheating, will RES-Q services include replacement of hoses, or qui
No, RES-Q roadside assistance for overheating only includes the addition of coolant/water to your radiator, to get you back on the road and to a nearest car service center.
</p>
<h2 style="font-weight: bold; font-size: 40px;">
In case of a flat tire, will RES-Q services include vulcanizing?
</h2>
<p>
RES-Q tire assistance only includes help in replacing a flat tire using your functional spare tire.
</p>
<h2 style="font-weight: bold; font-size: 40px;">
How long will it take to fix a flat tire?
</h2>

View file

@ -889,7 +889,7 @@ class JobOrderController extends BaseController
$this->fillFormTags($params);
// get closest hubs
$hubs = $map_tools->getClosestHubs($obj->getCoordinates(), 30, date("H:i:s"));
$hubs = $map_tools->getClosestHubs($obj->getCoordinates(), 50, date("H:i:s"));
$params['hubs'] = [];
@ -1452,7 +1452,7 @@ class JobOrderController extends BaseController
$this->fillFormTags($params);
// get closest hubs
$hubs = $map_tools->getClosestHubs($obj->getCoordinates(), 30, date("H:i:s"));
$hubs = $map_tools->getClosestHubs($obj->getCoordinates(), 50, date("H:i:s"));
$params['status_cancelled'] = JOStatus::CANCELLED;
$params['hubs'] = [];

View file

@ -10,6 +10,7 @@ class TicketType extends NameValue
const BILLING = 'billing';
const OTHER = 'other';
const FOR_FOLLOW_UP = 'for_follow_up';
const RESQ_INQUIRY = 'resq_inquiry';
const COLLECTION = [
'complaint' => 'Complaint',
@ -18,6 +19,6 @@ class TicketType extends NameValue
'billing' => 'Billing',
'other' => 'Other',
'for_follow_up' => 'For follow-up',
'resq_inquiry' => 'RESQ Inquiry',
];
}