Skip to Content
Menu
This question has been flagged
1 Reply
4053 Views

Hi there,


Please advise how can I get the breaking changes of odoo 14 for developers? Or how can I know what are the attributes that have been deleted/replaced into v14.0 so I can update my customized modules accordingly? like the "src_model" was changed to "binding_model" in v13.0

Avatar
Discard
Best Answer

Hi,

Please check this:  Migration to version 14.0

In View XML, the invisible and readonly no longer support dynamic expressions. In those, use the attrs attribute instead.


XML shortcut tags <act_window> and <report> are no longer valid, and must be replaced by its full definition through <record> tag.


If there are transient models, you have to add explicit security ACLs for them (and optionally record rules).


If you were overriding _compute_display_name for getting a different display_name, you should now override name_get method and add there the needed @api.depends. This is not valid though if you want to make display_name stored for allowing a direct name_search. Other option is to override name_search instead.


Thanks

Avatar
Discard
Related Posts Replies Views Activity
1
Nov 24
1479
1
Nov 24
1184
2
Sep 24
1046
1
Aug 24
2449
3
Aug 24
2681