Merge branch 'develop' into feature/CSR-1390-style
This commit is contained in:
commit
52111388dd
1 changed files with 4 additions and 2 deletions
|
|
@ -2063,9 +2063,11 @@ export const actions = {
|
||||||
},
|
},
|
||||||
|
|
||||||
savePaymentType(context, isInsurance) {
|
savePaymentType(context, isInsurance) {
|
||||||
context.commit(storeMutations.UPDATE_IS_INSURANCE, isInsurance);
|
if (isInsurance !== context.getters.payment.isInsurance) {
|
||||||
|
|
||||||
context.commit(storeMutations.RESET_PAYMENT_METHOD_CHOICE);
|
context.commit(storeMutations.RESET_PAYMENT_METHOD_CHOICE);
|
||||||
|
}
|
||||||
|
|
||||||
|
context.commit(storeMutations.UPDATE_IS_INSURANCE, isInsurance);
|
||||||
},
|
},
|
||||||
|
|
||||||
savePaymentMethodChoice(context, paymentMethod) {
|
savePaymentMethodChoice(context, paymentMethod) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue