calendar_event.py 327 B

12345678910
  1. # -*- coding: utf-8 -*-
  2. # © 2016 Therp BV <http://therp.nl>
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. from openerp import fields, models
  5. class CalendarEvent(models.Model):
  6. _inherit = 'calendar.event'
  7. account_invoice_id = fields.Many2one('account.invoice', string='Referencia de Factura')