mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
65 lines
1.9 KiB
Python
65 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2015 Akretion (http://www.akretion.com).
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = 'product.template'
|
|
|
|
bom_line_ids = fields.One2many(
|
|
comodel_name='mrp.bom.line',
|
|
inverse_name='product_tmpl_id',
|
|
string='Bom Line',
|
|
help='If your product is manufactured you can select '
|
|
'here the component to produce them')
|
|
|
|
@api.model
|
|
def _extract_bom_line(self, vals):
|
|
return vals.pop('bom_line_ids', {})
|
|
|
|
@api.multi
|
|
def _prepare_bom_vals(self, vals):
|
|
self.ensure_one()
|
|
return {
|
|
'product_tmpl_id': self.id,
|
|
'bom_line_ids': vals,
|
|
}
|
|
|
|
@api.multi
|
|
def _process_bom_vals(self, vals):
|
|
for record in self:
|
|
if record.bom_ids:
|
|
record.bom_ids[0].write({'bom_line_ids': vals})
|
|
else:
|
|
record.env['mrp.bom'].create(self._prepare_bom_vals(vals))
|
|
|
|
@api.model
|
|
def create(self, vals):
|
|
bom_vals = self._extract_bom_line(vals)
|
|
record = super(ProductTemplate, self).create(vals)
|
|
if bom_vals:
|
|
record._process_bom_vals(bom_vals)
|
|
return record
|
|
|
|
@api.multi
|
|
def write(self, vals):
|
|
""" default_type is in product and bom so _context ovewrite the default
|
|
value for bom with typ:'product' need to becarefull
|
|
"""
|
|
bom_vals = self._extract_bom_line(vals)
|
|
res = super(ProductTemplate, self).write(vals)
|
|
if bom_vals:
|
|
ctx = self._context.copy()
|
|
ctx.pop('default_type', None)
|
|
self.with_context(ctx)._process_bom_vals(bom_vals)
|
|
return res
|
|
|
|
@api.multi
|
|
def unlink(self):
|
|
for record in self:
|
|
if record.bom_ids:
|
|
record.bom_ids.unlink()
|
|
return super(ProductTemplate, self).unlink()
|