Update OLDLMS Appointment & Livechat Status

This commit is contained in:
R
2023-02-15 09:03:13 +07:00
parent d8a98f4648
commit b225084991
2 changed files with 10 additions and 10 deletions

View File

@@ -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';

View File

@@ -16,7 +16,7 @@ class Livechat extends Model
1 => 'Diterima',
2 => 'Ditolak',
3 => 'Selesai',
4 => 'Dibatalkan',
4 => 'Expired',
];
const CREATED_AT = 'dCreateOn';