From 855c8ea8df64ee9426e92501404c6f6248903483 Mon Sep 17 00:00:00 2001 From: ernesto Date: Fri, 6 Sep 2019 12:58:07 -0400 Subject: [PATCH] [FIX] account_bank_statement_import_paypal: set right current and partner in tests --- account_bank_statement_import_paypal/tests/paypal_en.csv | 2 +- .../tests/test_paypal_statement_import.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/account_bank_statement_import_paypal/tests/paypal_en.csv b/account_bank_statement_import_paypal/tests/paypal_en.csv index 1bef2f8..234a327 100644 --- a/account_bank_statement_import_paypal/tests/paypal_en.csv +++ b/account_bank_statement_import_paypal/tests/paypal_en.csv @@ -1,3 +1,3 @@ "Date","Time","Time Zone","Description","Currency","Gross","Fee ","Net","Balance","Transaction ID","From Email Address","Name","Bank Name","Bank Account","Shipping and Handling Amount","Sales Tax","Invoice ID","Reference Txn ID" "12/15/2018","20:07:53","CET","Your best supplier","USD","-33.50","-2.3","-31.2","-31.2","53820712527632627","","John Doe","Bank of America","123456789","0","0","INV25","23" -"12/15/2018","22:07:53","CET","Your payment","USD","1,525.00","0","1,525.00","1,493.80","34731322767782103","","Agrolait","","","0","0","INV/2019/0003","24" +"12/15/2018","22:07:53","CET","Your payment","USD","1,525.00","0","1,525.00","1,493.80","34731322767782103","","Azure Interior","","","0","0","INV/2019/0003","24" diff --git a/account_bank_statement_import_paypal/tests/test_paypal_statement_import.py b/account_bank_statement_import_paypal/tests/test_paypal_statement_import.py index befc77e..632aec9 100644 --- a/account_bank_statement_import_paypal/tests/test_paypal_statement_import.py +++ b/account_bank_statement_import_paypal/tests/test_paypal_statement_import.py @@ -14,10 +14,14 @@ class TestPaypalFile(common.SavepointCase): cls.map = cls.env['account.bank.statement.import.paypal.map'].create({ 'name': 'Paypal Map Test', }) + usd = cls.env.ref('base.USD') cls.journal = cls.env['account.journal'].create({ 'name': 'Paypal Bank', 'type': 'bank', 'code': 'PYPAL', + 'currency_id': ( + usd.id if cls.env.user.company_id.currency_id != usd else False + ), }) def _do_import(self, file_name):