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.
13 lines
369 B
13 lines
369 B
# Copyright (C) 2019 Akretion
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class Base(models.AbstractModel):
|
|
_inherit = "base"
|
|
|
|
attachment_ids = fields.One2many(
|
|
'ir.attachment', 'res_id', string='Attachments',
|
|
domain=lambda self: [('res_model', '=', self._name)], auto_join=True
|
|
)
|