mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
15 lines
346 B
Python
15 lines
346 B
Python
# Copyright 2022 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class StockRoute(models.Model):
|
|
|
|
_inherit = "stock.route"
|
|
|
|
is_mto = fields.Boolean(
|
|
help="Is a MTO (Make to Order) route. Check this if you want to identify"
|
|
"this route as an MTO one."
|
|
)
|