Add subscription as mode of payment #799
This commit is contained in:
parent
74c45b6d18
commit
f554658c7f
1 changed files with 2 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ class ModeOfPayment extends NameValue
|
||||||
const INSTALLMENT = 'installment';
|
const INSTALLMENT = 'installment';
|
||||||
const GCASH = 'gcash';
|
const GCASH = 'gcash';
|
||||||
const CREDIT_CARD_AMEX = 'credit_card_amex';
|
const CREDIT_CARD_AMEX = 'credit_card_amex';
|
||||||
|
const SUBSCRIPTION = 'subscription';
|
||||||
|
|
||||||
const COLLECTION = [
|
const COLLECTION = [
|
||||||
'cash' => 'Cash',
|
'cash' => 'Cash',
|
||||||
|
|
@ -18,5 +19,6 @@ class ModeOfPayment extends NameValue
|
||||||
'installment' => 'Installment - BDO',
|
'installment' => 'Installment - BDO',
|
||||||
'gcash' => 'GCash',
|
'gcash' => 'GCash',
|
||||||
'credit_card_amex' => 'Credit Card - AMEX',
|
'credit_card_amex' => 'Credit Card - AMEX',
|
||||||
|
'subscription' => 'Subscription',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue