mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
11 lines
304 B
Python
11 lines
304 B
Python
# Copyright 2023 Tecnativa - Pedro M. Baeza
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
from odoo import models
|
|
|
|
|
|
class MrpProduction(models.Model):
|
|
_inherit = "mrp.production"
|
|
|
|
def action_show_attachments(self):
|
|
return self.product_id._action_show_attachments()
|