Remove translate=False

fixes bug #190
This commit is contained in:
Alexis de Lattre
2022-12-17 18:51:14 +01:00
parent 16c4b1cebe
commit 492a7275c2
12 changed files with 0 additions and 177 deletions

View File

@@ -1,7 +1,6 @@
from . import stock_move
from . import stock_move_line
from . import stock_picking
from . import stock_location_route
from . import stock_warehouse_orderpoint
from . import stock_quant
from . import procurement_group

View File

@@ -1,11 +0,0 @@
# 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)

View File

@@ -24,9 +24,3 @@ class StockPicking(models.Model):
for pick in self:
pick.message_post(body=_("Picking <b>unreserved</b>."))
return res
class StockPickingType(models.Model):
_inherit = 'stock.picking.type'
name = fields.Char(translate=False)