In Odoo v14, ir.actions.act_window have only access rights for admin while a user had read access in previous versions. Odoo provides now a function (_for_xml_id) that returns the action read with sudo.
Fix for error when opening a contact and clicking the smart button.
Error Information:
File "/opt/odoo/v12/src/partner-contact/partner_multi_relation/models/res_partner.py", line 187, in action_view_relations
action['context'].\
AttributeError: 'str' object has no attribute 'update'
* Bug Fix
* Enable additional columns on res_partner_relation_all.
Enable to add additional columns from res_partner_relation in the sql view of res_partner_relation_all.
* Only require inverse_name when relation type is not symmetric
* Remove deprecated @api.one and replace openerp with odoo
* Add website to manifest
* Prevent disabling allow_self if reflexive relations exist
* Enable deleting/ending invalid relations after deactivating reflexivity.
* Handle case of invalid future reflexive relations
* Update README
* Python 2to3
* Move relation menus items under contacts
* Fix date comparison
* Fix cache invalidate on relation write
* Bump module version
* Remove test_relation_type_unlink_dberror
This test is not required because it tests a standard behavior of SQL.
If a foreign key column is not nullable, then the foreign row can not be deleted.
* Remove utf8 encoding comment
* Add missing dependency for partner_multi_relation
* Add missing active_test in view action