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:
commit
c2adf8f082
1 changed files with 2 additions and 0 deletions
|
|
@ -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',
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue