Resolve "Resq - get only compatible batteries after customer vehicle is selected" #1351

Merged
korina.cordero merged 25 commits from 461-resq-get-only-compatible-batteries-after-customer-vehicle-is-selected into 465-resq-august-13-release 2020-08-10 06:35:14 +00:00
Showing only changes of commit 117974d2cb - Show all commits

View file

@ -0,0 +1,16 @@
<?php
namespace App\Ramcar;
class CustomerNotWaitReason extends NameValue
{
const EMERGENCY = 'emergency';
const USE_VEHICLE_NOW = 'use_vehicle_now';
const WITH_APPOINTMENT = 'with_appointment';
const COLLECTION = [
'emergency' => 'Emergency',
'use_vehicle_now' => 'Need to Use Vehicle Now',
'with_appointment' => 'With Appointment',
];
}