attachment.py 454 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. # For copyright and license notices, see __openerp__.py file in module root
  4. # directory
  5. ##############################################################################
  6. from openerp import models, fields
  7. class AccountInvoice(models.Model):
  8. _inherit = 'account.invoice'
  9. attachment_ids = fields.One2many('ir.attachment', 'res_id', 'Attachment')