From 8c06bd4fcabb789b7f41536324e62ab07d846297 Mon Sep 17 00:00:00 2001 From: grisel-davy Date: Mon, 12 Oct 2020 11:59:37 +0200 Subject: [PATCH] Fix creation of cotisation --- cotisations/models.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cotisations/models.py b/cotisations/models.py index c8a0070e..30256397 100644 --- a/cotisations/models.py +++ b/cotisations/models.py @@ -505,13 +505,14 @@ class Vente(RevMixin, AclMixin, models.Model): def create_cotis(self, date_start_con=False, date_start_memb=False): """ - Creates a cotisation without initializing the dates (start and end ar set to self.facture.facture.date) and without saving it. You should use Facture.reorder_purchases to set the right dates. + Creates a cotisation without initializing the dates (start and end ar set to self.facture.facture.date) + and without saving it. You should use Facture.reorder_purchases to set the right dates. """ try: invoice = self.facture.facture except Facture.DoesNotExist: return - if not hasattr(self, "cotisation") and (self.duration_membership or self.duration_days_membership): + if not hasattr(self, "cotisation") and self.test_membership_or_connection(): cotisation = Cotisation(vente=self) if date_start_con: cotisation.date_start_con = date_start_con