12 lines
316 B
Python
12 lines
316 B
Python
# Copyright 2014-2022 Akretion (http://www.akretion.com)
|
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class StockRoute(models.Model):
|
|
_inherit = 'stock.route'
|
|
|
|
name = fields.Char(translate=False)
|