From 8984309d880d77e2ece3dc150992835a613cbdcd Mon Sep 17 00:00:00 2001 From: cubells Date: Wed, 30 Nov 2016 21:15:57 +0100 Subject: [PATCH] [9.0] [MIG] mass_mailing_unique module --- mass_mailing_unique/README.rst | 11 ++++------- mass_mailing_unique/__init__.py | 4 +++- mass_mailing_unique/__openerp__.py | 11 +++++++---- mass_mailing_unique/hooks.py | 4 +++- mass_mailing_unique/models/__init__.py | 4 +++- mass_mailing_unique/models/mass_mailing.py | 4 +++- 6 files changed, 23 insertions(+), 15 deletions(-) diff --git a/mass_mailing_unique/README.rst b/mass_mailing_unique/README.rst index ea59209d..22ddc251 100644 --- a/mass_mailing_unique/README.rst +++ b/mass_mailing_unique/README.rst @@ -29,7 +29,7 @@ duplicated email inside one. You will not can. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/205/8.0 + :target: https://runbot.odoo-community.org/runbot/205/9.0 Bug Tracker =========== @@ -37,11 +37,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, -help us smashing it by providing a detailed and welcomed `feedback -`_. +help us smashing it by providing a detailed and welcomed feedback. Credits ======= @@ -49,7 +45,8 @@ Credits Contributors ------------ -* Jairo Llopis +* Jairo Llopis +* Vicent Cubells Maintainer ---------- diff --git a/mass_mailing_unique/__init__.py b/mass_mailing_unique/__init__.py index baa4dd41..70227430 100644 --- a/mass_mailing_unique/__init__.py +++ b/mass_mailing_unique/__init__.py @@ -1,6 +1,8 @@ # -*- coding: utf-8 -*- -# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# Copyright 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# Copyright 2016 Tecnativa - Vicent Cubells # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from . import models from .hooks import pre_init_hook diff --git a/mass_mailing_unique/__openerp__.py b/mass_mailing_unique/__openerp__.py index 5b7917d5..6683eea8 100644 --- a/mass_mailing_unique/__openerp__.py +++ b/mass_mailing_unique/__openerp__.py @@ -1,13 +1,16 @@ # -*- coding: utf-8 -*- -# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# Copyright 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# Copyright 2016 Tecnativa - Vicent Cubells # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + { "name": "Unique records for mass mailing", "summary": "Avoids duplicate mailing lists and contacts", - "version": "8.0.1.0.0", + "version": "9.0.1.0.0", "category": "Marketing", - "website": "https://grupoesoc.es", - "author": "Grupo ESOC Ingeniería de Servicios, " + "website": "https://tecnativa.com", + "author": "Grupo ESOC Ingeniería de Servicios," + "Tecnativa, " "Odoo Community Association (OCA)", "license": "AGPL-3", "application": False, diff --git a/mass_mailing_unique/hooks.py b/mass_mailing_unique/hooks.py index 419b520f..1a8961d3 100644 --- a/mass_mailing_unique/hooks.py +++ b/mass_mailing_unique/hooks.py @@ -1,7 +1,9 @@ # -*- coding: utf-8 -*- -# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# Copyright 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# Copyright 2016 Tecnativa - Vicent Cubells # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from openerp import _ from openerp.exceptions import ValidationError diff --git a/mass_mailing_unique/models/__init__.py b/mass_mailing_unique/models/__init__.py index 81bd9a96..f4f8574f 100644 --- a/mass_mailing_unique/models/__init__.py +++ b/mass_mailing_unique/models/__init__.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- -# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# Copyright 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# Copyright 2016 Tecnativa - Vicent Cubells # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from . import mass_mailing diff --git a/mass_mailing_unique/models/mass_mailing.py b/mass_mailing_unique/models/mass_mailing.py index 499671ee..97f0b44a 100644 --- a/mass_mailing_unique/models/mass_mailing.py +++ b/mass_mailing_unique/models/mass_mailing.py @@ -1,7 +1,9 @@ # -*- coding: utf-8 -*- -# © 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# Copyright 2015 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# Copyright 2016 Tecnativa - Vicent Cubells # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + from openerp import models