Merge branch '703-add-credit-card-amex-to-payment-mode' into 'master'

Resolve "Add Credit Card - AMEX to payment mode"

Closes #703

See merge request jankstudio/resq!820
This commit is contained in:
Kendrick Chan 2022-08-31 13:23:02 +00:00
commit c2adf8f082

View file

@ -9,6 +9,7 @@ class ModeOfPayment extends NameValue
const DEBIT_CARD = 'debit_card';
const INSTALLMENT = 'installment';
const GCASH = 'gcash';
const CREDIT_CARD_AMEX = 'credit_card_amex';
const COLLECTION = [
'cash' => 'Cash',
@ -16,5 +17,6 @@ class ModeOfPayment extends NameValue
'debit_card' => 'Debit Card',
'installment' => 'Installment - BDO',
'gcash' => 'GCash',
'credit_card_amex' => 'Credit Card - AMEX',
];
}