Skip to content

Commit 50b3d10

Browse files
[MIG] account_statement_import_online_wise: Migration to 15.0
1 parent 7fc1579 commit 50b3d10

19 files changed

+675
-1518
lines changed

account_statement_import_online_wise/README.rst

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Online Bank Statements: Wise.com (TransferWise.com)
1717
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
1818
:alt: License: AGPL-3
1919
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github
20-
:target: https://github.com/OCA/bank-statement-import/tree/14.0/account_statement_import_online_wise
20+
:target: https://github.com/OCA/bank-statement-import/tree/15.0/account_statement_import_online_wise
2121
:alt: OCA/bank-statement-import
2222
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23-
:target: https://translation.odoo-community.org/projects/bank-statement-import-14-0/bank-statement-import-14-0-account_statement_import_online_wise
23+
:target: https://translation.odoo-community.org/projects/bank-statement-import-15-0/bank-statement-import-15-0-account_statement_import_online_wise
2424
:alt: Translate me on Weblate
2525
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26-
:target: https://runboat.odoo-community.org/builds?repo=OCA/bank-statement-import&target_branch=14.0
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/bank-statement-import&target_branch=15.0
2727
:alt: Try me on Runboat
2828

2929
|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -42,24 +42,24 @@ Configuration
4242

4343
To configure online bank statements provider:
4444

45-
#. Go to *Invoicing > Configuration > Bank Accounts*
46-
#. Open bank account to configure and edit it
47-
#. Set *Bank Feeds* to *Online*
48-
#. Select *Wise.com (TransferWise.com)* as online bank statements provider in
49-
*Online Bank Statements (OCA)* section
50-
#. Save the bank account
51-
#. Click on provider and configure provider-specific settings.
45+
#. Go to *Invoicing > Configuration > Journals*
46+
#. Open a journal to configure and edit it
5247

5348
or, alternatively:
5449

5550
#. Go to *Invoicing > Overview*
56-
#. Open settings of the corresponding journal account
57-
#. Switch to *Bank Account* tab
58-
#. Set *Bank Feeds* to *Online*
51+
#. Open Configuration of the corresponding journal account
52+
53+
Then define the settings:
54+
55+
#. Set *Bank Feeds* to *Online (OCA)*
5956
#. Select *Wise.com (TransferWise.com)* as online bank statements provider in
6057
*Online Bank Statements (OCA)* section
61-
#. Save the bank account
58+
#. Save the journal
6259
#. Click on provider and configure provider-specific settings.
60+
#. Set API base to the appropriate environments stated here: ahttps://docs.wise.com/api-docs/api-reference/environments
61+
#. Get the API key from your Wise account and paste it to API key.
62+
#. Press Generate Key and upload the public key to your Wise account.
6363

6464
Usage
6565
=====
@@ -83,7 +83,7 @@ Bug Tracker
8383
Bugs are tracked on `GitHub Issues <https://github.com/OCA/bank-statement-import/issues>`_.
8484
In case of trouble, please check there if your issue has already been reported.
8585
If you spotted it first, help us to smash it by providing a detailed and welcomed
86-
`feedback <https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_online_wise%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
86+
`feedback <https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_online_wise%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
8787

8888
Do not contact contributors directly about support or help with technical issues.
8989

@@ -100,7 +100,9 @@ Contributors
100100

101101
* `CorporateHub <https://corporatehub.eu/>`__
102102

103-
* Alexey Pelykh <[email protected]>
103+
* Alexey Pelykh <[email protected]>
104+
105+
* Jan Suhr | Nitrokey <[email protected]>
104106

105107
Maintainers
106108
~~~~~~~~~~~
@@ -123,6 +125,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
123125

124126
|maintainer-alexey-pelykh|
125127

126-
This module is part of the `OCA/bank-statement-import <https://github.com/OCA/bank-statement-import/tree/14.0/account_statement_import_online_wise>`_ project on GitHub.
128+
This module is part of the `OCA/bank-statement-import <https://github.com/OCA/bank-statement-import/tree/15.0/account_statement_import_online_wise>`_ project on GitHub.
127129

128130
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

account_statement_import_online_wise/__manifest__.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,18 @@
44

55
{
66
"name": "Online Bank Statements: Wise.com (TransferWise.com)",
7-
"version": "14.0.1.0.0",
7+
"version": "15.0.1.0.0",
88
"author": "CorporateHub, Odoo Community Association (OCA)",
99
"maintainers": ["alexey-pelykh"],
1010
"website": "https://github.com/OCA/bank-statement-import",
1111
"license": "AGPL-3",
1212
"category": "Accounting",
1313
"summary": "Online bank statements for Wise.com (TransferWise.com)",
14-
"depends": ["account_statement_import_online", "web_widget_dropdown_dynamic"],
14+
"depends": [
15+
"account_statement_import_online",
16+
"web_widget_dropdown_dynamic",
17+
],
1518
"external_dependencies": {"python": ["cryptography"]},
16-
"data": ["views/online_bank_statement_provider.xml"],
19+
"data": ["views/online_bank_statement_provider_views.xml"],
1720
"installable": True,
1821
}

account_statement_import_online_wise/i18n/account_bank_statement_import_online_transferwise.pot

Lines changed: 0 additions & 95 deletions
This file was deleted.

account_statement_import_online_wise/i18n/account_statement_import_online_wise.pot

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
msgid ""
66
msgstr ""
7-
"Project-Id-Version: Odoo Server 14.0\n"
7+
"Project-Id-Version: Odoo Server 15.0\n"
88
"Report-Msgid-Bugs-To: \n"
99
"Last-Translator: \n"
1010
"Language-Team: \n"
@@ -29,13 +29,13 @@ msgid "Display Name"
2929
msgstr ""
3030

3131
#. module: account_statement_import_online_wise
32-
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_transferwise.py:0
32+
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_wise.py:0
3333
#, python-format
3434
msgid "Ending balance unavailable"
3535
msgstr ""
3636

3737
#. module: account_statement_import_online_wise
38-
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_transferwise.py:0
38+
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_wise.py:0
3939
#, python-format
4040
msgid "Fee for %s"
4141
msgstr ""
@@ -56,7 +56,7 @@ msgid "Last Modified on"
5656
msgstr ""
5757

5858
#. module: account_statement_import_online_wise
59-
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_transferwise.py:0
59+
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_wise.py:0
6060
#, python-format
6161
msgid "No API key specified!"
6262
msgstr ""
@@ -67,7 +67,7 @@ msgid "Online Bank Statement Provider"
6767
msgstr ""
6868

6969
#. module: account_statement_import_online_wise
70-
#: model:ir.model.fields,field_description:account_statement_import_online_wise.field_online_bank_statement_provider__transferwise_profile
70+
#: model:ir.model.fields,field_description:account_statement_import_online_wise.field_online_bank_statement_provider__wise_profile
7171
msgid "Origin"
7272
msgstr ""
7373

@@ -92,19 +92,19 @@ msgid "Strong Customer Authentication"
9292
msgstr ""
9393

9494
#. module: account_statement_import_online_wise
95-
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_transferwise.py:0
95+
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_wise.py:0
9696
#, python-format
9797
msgid "Strong Customer Authentication is not configured"
9898
msgstr ""
9999

100100
#. module: account_statement_import_online_wise
101-
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_transferwise.py:0
101+
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_wise.py:0
102102
#, python-format
103103
msgid "Transaction fee for %s"
104104
msgstr ""
105105

106106
#. module: account_statement_import_online_wise
107-
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_transferwise.py:0
107+
#: code:addons/account_statement_import_online_wise/models/online_bank_statement_provider_wise.py:0
108108
#, python-format
109109
msgid "Unable to parse key"
110110
msgstr ""

account_statement_import_online_wise/i18n/it.po

Lines changed: 0 additions & 113 deletions
This file was deleted.

0 commit comments

Comments
 (0)