Self-service cancellation: Allow to disable auto-refunds

This commit is contained in:
Raphael Michel
2021-09-15 13:43:28 +02:00
parent 848ea999c5
commit 61649ab2b8
4 changed files with 14 additions and 5 deletions

View File

@@ -1440,6 +1440,7 @@ DEFAULTS = {
('off', _('All refunds are issued to the original payment method')),
('option', _('Customers can choose between a gift card and a refund to their payment method')),
('force', _('All refunds are issued as gift cards')),
('manually', _('Do not handle refunds automatically at all')),
],
),
'form_class': forms.ChoiceField,
@@ -1449,6 +1450,7 @@ DEFAULTS = {
('off', _('All refunds are issued to the original payment method')),
('option', _('Customers can choose between a gift card and a refund to their payment method')),
('force', _('All refunds are issued as gift cards')),
('manually', _('Do not handle refunds automatically at all')),
],
widget=forms.RadioSelect,
# When adding a new ordering, remember to also define it in the event model