diff --git a/stock_inventory_chatter/README.rst b/stock_inventory_chatter/README.rst index 9d45e3d9f..455fc0e3d 100644 --- a/stock_inventory_chatter/README.rst +++ b/stock_inventory_chatter/README.rst @@ -35,6 +35,7 @@ Contributors ------------ * Miquel Raïch +* Xavier Jimenez Maintainer ---------- diff --git a/stock_inventory_chatter/__init__.py b/stock_inventory_chatter/__init__.py index e50f9b656..6d4286281 100644 --- a/stock_inventory_chatter/__init__.py +++ b/stock_inventory_chatter/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). diff --git a/stock_inventory_chatter/__manifest__.py b/stock_inventory_chatter/__manifest__.py index e61513353..7fa9fcbac 100644 --- a/stock_inventory_chatter/__manifest__.py +++ b/stock_inventory_chatter/__manifest__.py @@ -1,11 +1,10 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { 'name': 'Stock Inventory Chatter', - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'author': "Eficent, " "Odoo Community Association (OCA)", "website": "https://github.com/OCA/stock-logistics-warehouse", diff --git a/stock_inventory_chatter/data/stock_data.xml b/stock_inventory_chatter/data/stock_data.xml index 1ec808141..81aecac66 100644 --- a/stock_inventory_chatter/data/stock_data.xml +++ b/stock_inventory_chatter/data/stock_data.xml @@ -1,7 +1,6 @@ - - - + + Inventory Canceled @@ -19,5 +18,4 @@ - - + diff --git a/stock_inventory_chatter/models/__init__.py b/stock_inventory_chatter/models/__init__.py index ea02a8d92..07f7240b2 100644 --- a/stock_inventory_chatter/models/__init__.py +++ b/stock_inventory_chatter/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). diff --git a/stock_inventory_chatter/models/stock.py b/stock_inventory_chatter/models/stock.py index 0e064b7db..f797eeef5 100644 --- a/stock_inventory_chatter/models/stock.py +++ b/stock_inventory_chatter/models/stock.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # (http://www.eficent.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). @@ -8,7 +7,7 @@ from odoo import api, fields, models class StockInventory(models.Model): _name = 'stock.inventory' - _inherit = ['stock.inventory', 'mail.thread', 'ir.needaction_mixin'] + _inherit = ['stock.inventory', 'mail.thread'] partner_id = fields.Many2one(track_visibility='always') state = fields.Selection(track_visibility='onchange')