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 631c515
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion 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 Down
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

0 comments on commit 631c515

Please sign in to comment.