diff --git a/partner_vat_unique/README.rst b/partner_vat_unique/README.rst new file mode 100644 index 000000000..980af41b2 --- /dev/null +++ b/partner_vat_unique/README.rst @@ -0,0 +1,83 @@ +================== +Partner VAT Unique +================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpartner--contact-lightgray.png?logo=github + :target: https://github.com/OCA/partner-contact/tree/12.0/partner_vat_unique + :alt: OCA/partner-contact +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/partner-contact-12-0/partner-contact-12-0-partner_vat_unique + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/134/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Module to make the VAT number unique for customers and suppliers. Will not +consider empty VATs as duplicated. + +**Table of contents** + +.. contents:: + :local: + +Installation +============ + +Will not check previous VAT duplicates, so it is recomended make sure there +isn't any duplicated VAT before installation. + +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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Grant Thornton S.L.P + +Contributors +~~~~~~~~~~~~ + +* Ismael Calvo +* Vicent Cubells +* Michael Michot +* Koen Loodts + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/partner-contact `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/partner_vat_unique/__init__.py b/partner_vat_unique/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/partner_vat_unique/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/partner_vat_unique/__manifest__.py b/partner_vat_unique/__manifest__.py new file mode 100644 index 000000000..c48483add --- /dev/null +++ b/partner_vat_unique/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2017 Grant Thornton Spain - Ismael Calvo +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Partner VAT Unique", + "summary": + "Module to make the VAT number unique for customers and suppliers.", + "version": "12.0.1.0.0", + "category": "Customer Relationship Management", + "website": "https://github.com/OCA/partner-contact", + "author": "Grant Thornton S.L.P, Odoo Community Association (OCA)", + "license": "AGPL-3", + "application": True, + "installable": True, + "depends": ["base"], +} diff --git a/partner_vat_unique/i18n/es.po b/partner_vat_unique/i18n/es.po new file mode 100644 index 000000000..c3af43ac7 --- /dev/null +++ b/partner_vat_unique/i18n/es.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * partner_vat_unique +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-29 11:43+0000\n" +"PO-Revision-Date: 2017-11-29 11:43+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: partner_vat_unique +#: model:ir.model,name:partner_vat_unique.model_res_partner +msgid "Partner" +msgstr "" + +#. module: partner_vat_unique +#: code:addons/partner_vat_unique/models/res_partner.py:28 +#, fuzzy, python-format +msgid "The VAT %s already exists in another partner." +msgstr "¡El NIF debe de ser único por empresa!" diff --git a/partner_vat_unique/i18n/partner_vat_unique.pot b/partner_vat_unique/i18n/partner_vat_unique.pot new file mode 100644 index 000000000..e1a27b2cb --- /dev/null +++ b/partner_vat_unique/i18n/partner_vat_unique.pot @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * partner_vat_unique +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: partner_vat_unique +#: model:ir.model,name:partner_vat_unique.model_res_partner +msgid "Contact" +msgstr "" + +#. module: partner_vat_unique +#: code:addons/partner_vat_unique/models/res_partner.py:27 +#, python-format +msgid "The VAT %s already exists in another partner." +msgstr "" + diff --git a/partner_vat_unique/models/__init__.py b/partner_vat_unique/models/__init__.py new file mode 100644 index 000000000..91fed54d4 --- /dev/null +++ b/partner_vat_unique/models/__init__.py @@ -0,0 +1 @@ +from . import res_partner diff --git a/partner_vat_unique/models/res_partner.py b/partner_vat_unique/models/res_partner.py new file mode 100644 index 000000000..725a6ee78 --- /dev/null +++ b/partner_vat_unique/models/res_partner.py @@ -0,0 +1,29 @@ +# Copyright 2017 Grant Thornton Spain - Ismael Calvo +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo import api, models, _ +from odoo.exceptions import ValidationError +from odoo.tools import config + + +class ResPartner(models.Model): + _inherit = 'res.partner' + + @api.constrains('vat') + def _check_vat_unique(self): + for record in self: + if record.parent_id or not record.vat: + continue + test_condition = (config['test_enable'] and + not self.env.context.get('test_vat')) + if test_condition: + continue + results = self.env['res.partner'].search_count([ + ('parent_id', '=', False), + ('vat', '=', record.vat), + ('id', '!=', record.id) + ]) + if results: + raise ValidationError(_( + "The VAT %s already exists in another " + "partner.") % record.vat) diff --git a/partner_vat_unique/readme/CONTRIBUTORS.rst b/partner_vat_unique/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..1d3d7966d --- /dev/null +++ b/partner_vat_unique/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* Ismael Calvo +* Vicent Cubells +* Michael Michot +* Koen Loodts diff --git a/partner_vat_unique/readme/DESCRIPTION.rst b/partner_vat_unique/readme/DESCRIPTION.rst new file mode 100644 index 000000000..e463f5434 --- /dev/null +++ b/partner_vat_unique/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +Module to make the VAT number unique for customers and suppliers. Will not +consider empty VATs as duplicated. diff --git a/partner_vat_unique/readme/INSTALL.rst b/partner_vat_unique/readme/INSTALL.rst new file mode 100644 index 000000000..10422fe3d --- /dev/null +++ b/partner_vat_unique/readme/INSTALL.rst @@ -0,0 +1,2 @@ +Will not check previous VAT duplicates, so it is recomended make sure there +isn't any duplicated VAT before installation. diff --git a/partner_vat_unique/static/description/icon.png b/partner_vat_unique/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/partner_vat_unique/static/description/icon.png differ diff --git a/partner_vat_unique/static/description/index.html b/partner_vat_unique/static/description/index.html new file mode 100644 index 000000000..9879b0c5d --- /dev/null +++ b/partner_vat_unique/static/description/index.html @@ -0,0 +1,429 @@ + + + + + + +Partner VAT Unique + + + +
+

Partner VAT Unique

+ + +

Beta License: AGPL-3 OCA/partner-contact Translate me on Weblate Try me on Runbot

+

Module to make the VAT number unique for customers and suppliers. Will not +consider empty VATs as duplicated.

+

Table of contents

+ +
+

Installation

+

Will not check previous VAT duplicates, so it is recomended make sure there +isn’t any duplicated VAT before installation.

+
+
+

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.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Grant Thornton S.L.P
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/partner-contact project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/partner_vat_unique/tests/__init__.py b/partner_vat_unique/tests/__init__.py new file mode 100644 index 000000000..0742f6bf1 --- /dev/null +++ b/partner_vat_unique/tests/__init__.py @@ -0,0 +1 @@ +from . import test_vat_unique diff --git a/partner_vat_unique/tests/test_vat_unique.py b/partner_vat_unique/tests/test_vat_unique.py new file mode 100644 index 000000000..104303ee8 --- /dev/null +++ b/partner_vat_unique/tests/test_vat_unique.py @@ -0,0 +1,23 @@ +# Copyright 2017 Grant Thornton Spain - Ismael Calvo +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from odoo.tests.common import SavepointCase +from odoo.exceptions import ValidationError + + +class TestVatUnique(SavepointCase): + @classmethod + def setUpClass(cls): + super(TestVatUnique, cls).setUpClass() + cls.partner_model = cls.env['res.partner'] + cls.partner = cls.partner_model.create({ + 'name': 'Test partner', + 'vat': 'ESA12345674' + }) + + def test_duplicated_vat_creation(self): + with self.assertRaises(ValidationError): + self.partner_model.with_context(test_vat=True).create({ + 'name': 'Second partner', + 'vat': 'ESA12345674' + })