Skip to content

Commit

Permalink
[MIG] account_statement_import_online_plaid: Migration to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rrebollo committed Nov 29, 2024
1 parent 95a15ff commit f999fb1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
5 changes: 3 additions & 2 deletions account_statement_import_online_plaid/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Online Bank Statements: plaid.com",
"version": "16.0.1.0.0",
"version": "17.0.1.0.0",
"category": "Account",
"website": "https://github.com/OCA/bank-statement-import",
"author": "Binhex, Odoo Community Association (OCA)",
"license": "AGPL-3",
"installable": True,
"depends": ["account_statement_import_online"],
"data": [
"security/ir.model.access.csv",
"views/online_bank_statement_provider.xml",
],
"assets": {
Expand All @@ -18,6 +19,6 @@
],
},
"external_dependencies": {
"python": ["plaid-python"],
"python": ["plaid-python==23.0.0"],
},
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
plaid_interface_manager,plaid interface manager,model_plaid_interface,account.group_account_user,1,1,1,1
plaid_interface_user,plaid interface user,model_plaid_interface,base.group_user,1,0,0,0
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
<group
name="plaid"
string="Plaid config"
attrs="{'invisible':[('service','!=','plaid')]}"
invisible="service != 'plaid'"
>
<field name="plaid_access_token" invisible="1" />
<field name="username" string="Login" />
<field name="password" string="Secret Key" />
<field
name="plaid_host"
attrs="{'required': [('service', '=', 'plaid')]}"
required="service == 'plaid'"
string="Plaid Host"
/>
</group>
Expand All @@ -30,7 +30,7 @@
class="btn btn-secondary"
name="action_sync_with_plaid"
string="Sync with Plaid.com"
attrs="{'invisible': [('service', '!=', 'plaid')]}"
invisible="service != 'plaid'"
/>
</xpath>
</field>
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# generated from manifests external_dependencies
chardet
plaid-python
plaid-python==23.0.0
xlrd

0 comments on commit f999fb1

Please sign in to comment.