mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
39 lines
1.3 KiB
Python
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
|