From ec29fdf037098c12d7b6d5cb8c0a0388e82286af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Taymans?= Date: Fri, 7 Jun 2019 10:55:37 +0200 Subject: [PATCH 1/3] [FIX] emc: Let emc be installable The mail_tempalte_data must be loaded after the reports, else the installation on a fresh install does not work. --- easy_my_coop/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easy_my_coop/__manifest__.py b/easy_my_coop/__manifest__.py index d15d01d..bb3a445 100644 --- a/easy_my_coop/__manifest__.py +++ b/easy_my_coop/__manifest__.py @@ -28,7 +28,6 @@ 'security/easy_my_coop_security.xml', 'security/ir.model.access.csv', 'data/easy_my_coop_data.xml', - 'data/mail_template_data.xml', 'wizard/create_subscription_from_partner.xml', 'wizard/update_partner_info.xml', 'wizard/validate_subscription_request.xml', @@ -47,6 +46,7 @@ 'report/cooperator_certificat_G001.xml', 'report/cooperator_subscription_G001.xml', 'report/cooperator_register_G001.xml', + 'data/mail_template_data.xml', # Must be loaded after reports ], 'installable': True, 'application': True, From 10c0217ec478a606a68715d8d082e132ccc5e8d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Taymans?= Date: Fri, 7 Jun 2019 11:01:32 +0200 Subject: [PATCH 2/3] [FIX] emc: Wrong link to cie website --- easy_my_coop/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easy_my_coop/__manifest__.py b/easy_my_coop/__manifest__.py index bb3a445..d5318b2 100644 --- a/easy_my_coop/__manifest__.py +++ b/easy_my_coop/__manifest__.py @@ -18,7 +18,7 @@ ], "author": "Coop IT Easy SCRLfs", "category": "Cooperative management", - "website": "www.coopiteasy.be", + "website": "https://www.coopiteasy.be", "license": "AGPL-3", "description": """ This module allows to manage the cooperator subscription and all the From 57766015496c5b22b1eab221445e7db750185d3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Taymans?= Date: Fri, 7 Jun 2019 11:02:30 +0200 Subject: [PATCH 3/3] [REF] emc: manifest - Fix indent in header - Change indentation of depends key to be the same as data key. --- easy_my_coop/__manifest__.py | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/easy_my_coop/__manifest__.py b/easy_my_coop/__manifest__.py index d5318b2..1c1afe3 100644 --- a/easy_my_coop/__manifest__.py +++ b/easy_my_coop/__manifest__.py @@ -1,21 +1,22 @@ # Copyright 2013-2018 Open Architects Consulting SPRL. -# Copyright 2018-Coop IT Easy SCRLfs () +# Copyright 2018- Coop IT Easy SCRLfs () # - Houssine BAKKALI - # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { "name": "Easy My Coop", "version": "12.0.1.0.0", - "depends": ["base", - "sale", - "account", - "base_iban", - "product", - "partner_firstname", - "partner_contact_birthdate", - "partner_contact_address", - "email_template_config", - ], + "depends": [ + "base", + "sale", + "account", + "base_iban", + "product", + "partner_firstname", + "partner_contact_birthdate", + "partner_contact_address", + "email_template_config", + ], "author": "Coop IT Easy SCRLfs", "category": "Cooperative management", "website": "https://www.coopiteasy.be",