From 283dc8fa7370a1d28ebf7ce07641838127fabeae Mon Sep 17 00:00:00 2001 From: houssine Date: Tue, 26 Mar 2019 19:34:52 +0100 Subject: [PATCH] [FIX] fix wrong field birthdate as we use partner_contact_birthdate --- easy_my_coop/models/coop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easy_my_coop/models/coop.py b/easy_my_coop/models/coop.py index e944b55..0fd97d2 100644 --- a/easy_my_coop/models/coop.py +++ b/easy_my_coop/models/coop.py @@ -330,7 +330,7 @@ class subscription_request(models.Model): 'out_inv_comm_type': 'bba', 'out_inv_comm_algorithm': 'random', 'country_id': self.country_id.id, 'lang': self.lang, - 'birthdate': self.birthdate, + 'birthdate_date': self.birthdate, 'customer': self.share_product_id.customer} return partner_vals