mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
10 lines
297 B
Python
10 lines
297 B
Python
# Copyright 2022 Tecnativa - Víctor Martínez
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
from odoo import fields, models
|
|
|
|
|
|
class StockLocationRoute(models.Model):
|
|
_inherit = "stock.route"
|
|
|
|
subcontracting_inhibit = fields.Boolean(string="Inhibit subcontracting")
|