mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2015 - Camptocamp SA - Author Vincent Renaville
|
|
# Copyright 2016 - Tecnativa - Angel Moya <odoo@tecnativa.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models, api, _
|
|
from odoo.exceptions import UserError
|
|
from odoo.tools import config
|
|
|
|
|
|
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_line in self.mapped('invoice_line_ids'):
|
|
if not invoice_line.invoice_line_tax_ids:
|
|
error_string = error_template % (invoice_line.name)
|
|
errors.append(error_string)
|
|
if errors:
|
|
raise UserError(
|
|
_('%s\n%s') % (_('No Taxes Defined!'),
|
|
'\n'.join(x for x in errors))
|
|
)
|
|
|
|
@api.multi
|
|
def invoice_validate(self):
|
|
if not (config['test_enable'] and
|
|
not self.env.context.get('test_tax_required')):
|
|
self._test_invoice_line_tax()
|
|
res = super(AccountInvoice, self).invoice_validate()
|
|
return res
|