diff --git a/account_invoice_tax_required/README.rst b/account_invoice_tax_required/README.rst new file mode 100644 index 000000000..9ef588456 --- /dev/null +++ b/account_invoice_tax_required/README.rst @@ -0,0 +1,38 @@ +Account invoice with tax required in invoice line +================================================== + +This module adds functional a check on invoice +to force user to set tax on invoice line. + + + +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 +`here `_. + + +Credits +======= + +Contributors +------------ + +* Vincent Renaville + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit http://odoo-community.org. + diff --git a/account_invoice_tax_required/__init__.py b/account_invoice_tax_required/__init__.py new file mode 100644 index 000000000..ebb9d9601 --- /dev/null +++ b/account_invoice_tax_required/__init__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author Vincent Renaville. Copyright 2015 Camptocamp SA +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from . import models diff --git a/account_invoice_tax_required/__openerp__.py b/account_invoice_tax_required/__openerp__.py new file mode 100644 index 000000000..2a23a5cad --- /dev/null +++ b/account_invoice_tax_required/__openerp__.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author Vincent Renaville. Copyright 2015 Camptocamp SA +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +{ + 'name': "Tax required in invoice", + 'version': "1.0", + "author": "Camptocamp,Odoo Community Association (OCA)", + 'website': "http://www.camptocamp.com", + 'category': "Localisation / Accounting", + 'license': "AGPL-3", + 'depends': ["account"], + 'data': [ + ], + 'installable': True, +} diff --git a/account_invoice_tax_required/i18n/account_invoice_tax_require.pot b/account_invoice_tax_required/i18n/account_invoice_tax_require.pot new file mode 100644 index 000000000..8ec91e874 --- /dev/null +++ b/account_invoice_tax_required/i18n/account_invoice_tax_require.pot @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_tax_required +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-15 11:36+0000\n" +"PO-Revision-Date: 2015-06-15 11:36+0000\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: account_invoice_tax_required +#: model:ir.model,name:account_invoice_tax_required.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_invoice_tax_required +#: code:addons/account_invoice_tax_required/models/account_invoice.py:29 +#, python-format +msgid "Invoice has a line with product %s with no taxes" +msgstr "" + +#. module: account_invoice_tax_required +#: code:addons/account_invoice_tax_required/models/account_invoice.py:39 +#, python-format +msgid "No Taxes Defined!" +msgstr "" + diff --git a/account_invoice_tax_required/i18n/fr.po b/account_invoice_tax_required/i18n/fr.po new file mode 100644 index 000000000..5ee1dd07f --- /dev/null +++ b/account_invoice_tax_required/i18n/fr.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_invoice_tax_required +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-06-15 11:36+0000\n" +"PO-Revision-Date: 2015-06-15 11:36+0000\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: account_invoice_tax_required +#: model:ir.model,name:account_invoice_tax_required.model_account_invoice +msgid "Invoice" +msgstr "Facture" + +#. module: account_invoice_tax_required +#: code:addons/account_invoice_tax_required/models/account_invoice.py:29 +#, python-format +msgid "Invoice has a line with product %s with no taxes" +msgstr "La facture a un produit %s sans taxe" + +#. module: account_invoice_tax_required +#: code:addons/account_invoice_tax_required/models/account_invoice.py:39 +#, python-format +msgid "No Taxes Defined!" +msgstr "Aucunes taxes définies" + diff --git a/account_invoice_tax_required/models/__init__.py b/account_invoice_tax_required/models/__init__.py new file mode 100644 index 000000000..ea7bac2d5 --- /dev/null +++ b/account_invoice_tax_required/models/__init__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author Vincent Renaville. Copyright 2015 Camptocamp SA +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from . import account_invoice diff --git a/account_invoice_tax_required/models/account_invoice.py b/account_invoice_tax_required/models/account_invoice.py new file mode 100644 index 000000000..836ef236c --- /dev/null +++ b/account_invoice_tax_required/models/account_invoice.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Author Vincent Renaville. Copyright 2015 Camptocamp SA +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +from openerp import models, api, exceptions, _ + + +class AccountInvoice(models.Model): + _inherit = "account.invoice" + + @api.multi + def test_invoice_line_tax(self): + errors = [] + error_template = _("Invoice has a line with product %s with no taxes") + for invoice in self: + for invoice_line in invoice.invoice_line: + if not invoice_line.invoice_line_tax_id: + error_string = error_template % (invoice_line.name) + errors.append(error_string) + if errors: + errors_full_string = ','.join(x for x in errors) + raise exceptions.Warning(_('No Taxes Defined!'), + errors_full_string) + else: + return True + + @api.multi + def invoice_validate(self): + self.test_invoice_line_tax() + res = super(AccountInvoice, self).invoice_validate() + return res