mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
10 lines
326 B
Python
10 lines
326 B
Python
# Copyright 2022 ForgeFlow S.L. (https://www.forgeflow.com)
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
|
from odoo import fields, models
|
|
|
|
|
|
class StockLocationRoute(models.Model):
|
|
_inherit = "stock.location.route"
|
|
|
|
mo_component_selectable = fields.Boolean(string="Selectable on MO Components")
|