diff --git a/app/Models/OLDLMS/Appointment.php b/app/Models/OLDLMS/Appointment.php index 1ec42aae..5ece2794 100644 --- a/app/Models/OLDLMS/Appointment.php +++ b/app/Models/OLDLMS/Appointment.php @@ -16,19 +16,19 @@ class Appointment extends Model const DELETED_AT = 'dDeleteOn'; public $sStatusNames = [ - 0 => 'Menunggu Konfirmasi', - 1 => 'Diterima', + 0 => 'Menunggu Pembayaran', + 1 => 'Pembayaran Terkonfirmasi', // Pembayaran Diterima 2 => 'Ditolak', - 3 => 'Selesai', - 4 => 'Dibatalkan', + 3 => 'Dibatalkan', // Canceled + 4 => 'Expired', ]; public $sPaymentMethodName = [ - 1 => 'Transfer Bank', - 2 => 'Kartu Kredit', - 3 => 'Dompet Digital', - 4 => 'Gerai Retail', - 5 => 'QRIS', + 1 => 'Pribadi', + 2 => 'On-Site Payment', + 3 => 'OVO', + 4 => 'Asuransi', + 5 => 'Voucher', ]; protected $connection = 'oldlms'; diff --git a/app/Models/OLDLMS/Livechat.php b/app/Models/OLDLMS/Livechat.php index af9c6301..1c1a50cf 100644 --- a/app/Models/OLDLMS/Livechat.php +++ b/app/Models/OLDLMS/Livechat.php @@ -16,7 +16,7 @@ class Livechat extends Model 1 => 'Diterima', 2 => 'Ditolak', 3 => 'Selesai', - 4 => 'Dibatalkan', + 4 => 'Expired', ]; const CREATED_AT = 'dCreateOn';