-
-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] *_import[_online]_adyen: adapt to 16.0
- Loading branch information
Showing
14 changed files
with
66 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
# Copyright 2017 Opener BV <https://opener.amsterdam> | ||
# Copyright 2020 Vanmoof BV <https://www.vanmoof.com> | ||
# Copyright 2021 Therp BV <https://therp.nl>. | ||
# Copyright 2021-2023 Therp BV <https://therp.nl>. | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). | ||
{ | ||
"name": "Adyen statement import", | ||
"version": "13.0.1.0.0", | ||
"author": "Opener BV, Vanmoof BV, Odoo Community Association (OCA)", | ||
"version": "16.0.1.0.0", | ||
"author": "Opener BV, Vanmoof BV, Therp BV, Odoo Community Association (OCA)", | ||
"category": "Banking addons", | ||
"website": "https://github.com/OCA/bank-statement-import", | ||
"license": "AGPL-3", | ||
"depends": [ | ||
"base_import", | ||
"account_bank_statement_import", | ||
"account_bank_statement_clearing_account", | ||
"account_statement_import_file", | ||
"account_statement_clearing_account", | ||
], | ||
"data": [ | ||
"security/ir.model.access.csv", | ||
"views/account_journal.xml", | ||
], | ||
"data": ["views/account_journal.xml"], | ||
"installable": True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from . import account_bank_statement_import | ||
from . import account_bank_statement_import_adyen_parser | ||
from . import account_statement_import | ||
from . import account_statement_import_adyen_parser | ||
from . import account_journal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink | ||
access_account_statement_import_adyen_parser,access_account_statement_import_adyen_parser,model_account_statement_import_adyen_parser,base.group_user,1,0,0,0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# Copyright 2021 - Therp BV <https://therp.nl>. | ||
# Copyright 2021-2023 - Therp BV <https://therp.nl>. | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
{ | ||
"name": "Online Bank Statements: Adyen payment report", | ||
"version": "13.0.1.0.0", | ||
"version": "16.0.1.0.0", | ||
"category": "Account", | ||
"website": "https://github.com/OCA/bank-statement-import", | ||
"author": "Ronald Portier (Therp BV), Odoo Community Association (OCA)", | ||
"license": "AGPL-3", | ||
"installable": True, | ||
"depends": [ | ||
"account_bank_statement_import_adyen", | ||
"account_bank_statement_import_online", | ||
"account_statement_import_adyen", | ||
"account_statement_import_online", | ||
], | ||
"data": ["views/online_bank_statement_provider.xml"], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
from . import account_journal | ||
from . import online_bank_statement_provider |
30 changes: 0 additions & 30 deletions
30
account_statement_import_online_adyen/models/account_journal.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
account_statement_import_online_adyen/tests/online_bank_statement_provider_dummy.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters