From bad555fbd10207a5883d837b20e66981681662bb Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Sun, 23 Sep 2018 15:08:59 +0800 Subject: [PATCH 1/3] Change closest hub display limit to 50 #162 --- src/Controller/JobOrderController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Controller/JobOrderController.php b/src/Controller/JobOrderController.php index 72f0c70a..61630861 100644 --- a/src/Controller/JobOrderController.php +++ b/src/Controller/JobOrderController.php @@ -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'] = []; From 268f06c88d670b7e8309eaa2378691a850d06757 Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Sun, 23 Sep 2018 15:40:50 +0800 Subject: [PATCH 2/3] Update faq static page #162 --- public/static/faq.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/public/static/faq.html b/public/static/faq.html index 2a8def80..2e0cdea3 100644 --- a/public/static/faq.html +++ b/public/static/faq.html @@ -96,6 +96,15 @@ Can you deliver anywhere in the Philippines? Not yet. Res-Q is offered initially in Metro Manila only.

+

+My battery was pulled out and is being recharged in an outlet. How do I follow-up when I can take my battery back? +

+

+Please call our hotline at (02) 370-6686. +

+ + +

How do I contact you for questions or feedback?

@@ -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.

+

+In case of a flat tire, will RES-Q services include vulcanizing? +

+

+RES-Q tire assistance only includes help in replacing a flat tire using your functional spare tire. +

+ +

How long will it take to fix a flat tire?

From 89d694901544804d2fdaf16be8bcfc868011e2fa Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Sun, 23 Sep 2018 15:53:38 +0800 Subject: [PATCH 3/3] Add resq inquiry ticket type #162 --- src/Ramcar/TicketType.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Ramcar/TicketType.php b/src/Ramcar/TicketType.php index 0e1fd865..3edc9c89 100644 --- a/src/Ramcar/TicketType.php +++ b/src/Ramcar/TicketType.php @@ -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', ]; }