carrier_id not readonly on done picking (add tracking on it)

fix for formatLang inherit in base_usability
This commit is contained in:
Alexis de Lattre
2018-07-18 14:27:21 +02:00
parent cfebb6c99c
commit 1957018a14
4 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-
# Copyright 2018 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 StockPicking(models.Model):
_inherit = 'stock.picking'
carrier_id = fields.Many2one(track_visibility='onchange')