mirror of
https://github.com/bringout/oca-mrp.git
synced 2026-04-24 08:31:58 +02:00
Initial commit: OCA Mrp packages (117 packages)
This commit is contained in:
commit
277e84fd7a
4403 changed files with 395154 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
from . import mrp_bom
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# Copyright (C) 2024 - Today: GRAP (http://www.grap.coop)
|
||||
# @author: Quentin DUPONT (quentin.dupont@grap.coop)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class MrpBom(models.Model):
|
||||
_inherit = "mrp.bom"
|
||||
|
||||
image_1024 = fields.Binary(related="product_tmpl_id.image_1024")
|
||||
image_512 = fields.Binary(related="product_tmpl_id.image_512")
|
||||
image_128 = fields.Binary(related="product_tmpl_id.image_128")
|
||||
Loading…
Add table
Add a link
Reference in a new issue