From 604c31c6e28daa01e731369bf37accdd8f8cdef9 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 28 Jan 2019 08:49:19 +0100 Subject: [PATCH] Bank transfer: Allow to manually accept payments of all amounts --- src/pretix/plugins/banktransfer/views.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/pretix/plugins/banktransfer/views.py b/src/pretix/plugins/banktransfer/views.py index 2446de5bd6..e5234ff83e 100644 --- a/src/pretix/plugins/banktransfer/views.py +++ b/src/pretix/plugins/banktransfer/views.py @@ -41,11 +41,6 @@ class ActionView(View): }) def _retry(self, trans): - if trans.amount != trans.order.total: - return JsonResponse({ - 'status': 'error', - 'message': _('The transaction amount is incorrect.') - }) return self._accept_ignore_amount(trans) def _accept_ignore_amount(self, trans):