Files
manufacture/mrp_routing/models/mrp_bom.py
Christopher Ormaza 96b57bbff2 [14.0][ADD] mrp_routing
2023-05-19 06:31:26 -05:00

39 lines
1.3 KiB
Python

# Copyright 2023 ForgeFlow S.L.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from odoo import api, fields, models
from .mrp_routing_workcenter_template import FIELDS_TO_SYNC
class MrpBom(models.Model):
_inherit = "mrp.bom"
routing_id = fields.Many2one(
comodel_name="mrp.routing",
string="Predefined Operations",
check_company=True,
tracking=True,
)
@api.onchange("routing_id")
def onchange_routing_id(self):
opeartion_model = self.env["mrp.routing.workcenter"]
if self.routing_id and self.routing_id.operation_ids:
new_operations = opeartion_model.browse()
for template_operation in self.routing_id.operation_ids:
operation_data = template_operation.read(
FIELDS_TO_SYNC, load="_classic_write"
)[0]
operation_data.pop("id")
if "operation_ids" in operation_data:
operation_data.pop("operation_ids")
operation_data.update(
{
"template_id": template_operation.id,
"on_template_change": "sync",
}
)
new_operations |= opeartion_model.new(operation_data)
self.operation_ids = new_operations