From 1c45685922b5561b8bce1c91b158184837391089 Mon Sep 17 00:00:00 2001 From: alt-odoo <alt@odoo.com> Date: Wed, 24 Feb 2021 13:02:12 +0000 Subject: [PATCH] [FIX] account: wrong journal in test_match_multi_currencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A move with type 'entry' cannot be posted in a 'sales' journal. It should be the default 'miscellaneous' journal instead. closes odoo/odoo#66729 Signed-off-by: William André (wan) <wan@odoo.com> --- addons/account/tests/test_reconciliation_matching_rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/tests/test_reconciliation_matching_rules.py b/addons/account/tests/test_reconciliation_matching_rules.py index 1529abfa8963..9b2906202c5c 100644 --- a/addons/account/tests/test_reconciliation_matching_rules.py +++ b/addons/account/tests/test_reconciliation_matching_rules.py @@ -743,7 +743,7 @@ class TestReconciliationMatchingRules(AccountTestInvoicingCommon): move = self.env['account.move'].create({ 'move_type': 'entry', 'date': '2017-01-01', - 'journal_id': self.company_data['default_journal_sale'].id, + 'journal_id': self.company_data['default_journal_misc'].id, 'line_ids': [ # Rate is 2 GOL = 1 USD in 2017. # The statement line will consider this line equivalent to 600 DAR. -- GitLab