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