You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
487 B

  1. # © 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
  2. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  3. from odoo import api, fields, models
  4. class AccountInvoice(models.Model):
  5. _inherit = 'account.invoice'
  6. contract_id = fields.Many2one(
  7. 'account.analytic.account', string='Contract'
  8. )
  9. @api.multi
  10. def finalize_creation_from_contract(self):
  11. for invoice in self:
  12. invoice._onchange_partner_id()
  13. self.compute_taxes()