Bulk refund: Fix only first refund being made (Z#23239965)

This commit is contained in:
Raphael Michel
2026-07-13 13:41:36 +02:00
parent ffca102a8a
commit 6963bd48c3
+1 -1
View File
@@ -382,7 +382,7 @@ class OrderOverpaidRefundBulkActionView(BaseOrderBulkActionView):
'provider': refund.provider,
}, user=self.request.user)
payment.payment_provider.execute_refund(refund)
return True
return bool(proposals)
except (ValueError, PaymentException):
return False