8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-01 23:42:34 +00:00
re2o/cotisations/payment_methods/mixins.py

12 lines
418 B
Python
Raw Normal View History

class PaymentMethodMixin:
"""The base class for payment models. They should inherit from this."""
def end_payment(self, invoice, request):
"""Redefine this method in order to get a different ending to the
payment session if you whish.
Must return a HttpResponse-like object.
"""
return self.payment.end_payment(
invoice, request, use_payment_method=False)