You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
antoniocanovas
changed the title
[BUG] account_financial_risk error in res.partner domain view
[BUG] account_financial_risk error in res.partner attribute domain view
Jan 8, 2025
Page "Financial risk" in res.partner must be show only for companies and not parent_id.
Module
account_financial_risk
Describe the bug
Error in attribute migration from 16 to 17
To Reproduce
v17
Steps to reproduce the behavior:
Expected behavior
Only companies must display this page.
** Proposed solution **
Change the invisible attribute in v17:
https://github.com/OCA/credit-control/blob/17.0/account_financial_risk/views/res_partner_view.xml
invisible="not is_company and not parent_id" => "not is_company and parent_id"
Original attribute in v16:
attrs="{'invisible': [('is_company','=',False), ('parent_id','!=',False)]}"
The text was updated successfully, but these errors were encountered: