diff --git a/account_move_line_stock_info/__manifest__.py b/account_move_line_stock_info/__manifest__.py index 7c018957b..c69c6398e 100644 --- a/account_move_line_stock_info/__manifest__.py +++ b/account_move_line_stock_info/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Account Move Line Stock Info", - "version": "13.0.1.1.0", + "version": "14.0.1.0.0", "depends": ["stock_account"], "author": "ForgeFlow," "Odoo Community Association (OCA)", "website": "https://github.com/OCA/stock-logistics-warehouse", diff --git a/account_move_line_stock_info/readme/CONTRIBUTORS.rst b/account_move_line_stock_info/readme/CONTRIBUTORS.rst index f20a4c7c0..d23a19642 100644 --- a/account_move_line_stock_info/readme/CONTRIBUTORS.rst +++ b/account_move_line_stock_info/readme/CONTRIBUTORS.rst @@ -1,3 +1,4 @@ * Jordi Ballester Alomar * Lois Rilo * Pimolnat Suntian +* Joan Mateu diff --git a/account_move_line_stock_info/tests/test_account_move_line_stock_move.py b/account_move_line_stock_info/tests/test_account_move_line_stock_move.py index c96b22195..e0e32f154 100644 --- a/account_move_line_stock_info/tests/test_account_move_line_stock_move.py +++ b/account_move_line_stock_info/tests/test_account_move_line_stock_move.py @@ -149,7 +149,7 @@ class TestAccountMoveLineStockInfo(TransactionCase): ) picking_in.action_confirm() picking_in.move_lines.quantity_done = 1 - picking_in.action_done() + picking_in._action_done() account_move_line = False for move in picking_in.move_lines: @@ -162,7 +162,7 @@ class TestAccountMoveLineStockInfo(TransactionCase): ) picking_out.action_confirm() picking_out.move_lines.quantity_done = 1 - picking_out.action_done() + picking_out._action_done() for move in picking_out.move_lines: self.assertEqual(len(move.account_move_line_ids), 2)