odoo/upgrade-util#138
Created by Amit M. Muchhala (ammu)
Blocked
- Merge method
- Review
-
CI
- ci/runbot: Test upgrades between stable versions
- ci/upgrade_enterprise: Test upgrades for enterprise master
- label
- odoo-dev:master-added-website_id-variable-ammu
- head
- 75f336e2f78026e1d84f86b925dd478e486d1412
odoo/upgrade-util | |
---|---|
master | #138 missing r+ |
[FIX] util/method: added variable to add_view
Description:
The util method add_view
was previously used to create views for view_type
such as form, tree, and qweb. However, it lacked support for setting the website_id
, which limited its ability to create website-specific views.
This PR introduces a new website_id
parameter to the add_view
method. By adding this parameter, the method can now be used to create views specific to a website, enabling the creation of both backend views (form, tree, qweb) and frontend website views.
Changes:
- Added website_id
parameter to the add_view
method.
- Adjusted the SQL query to include website_id
where applicable.
- Website views can now be created using this method by passing the appropriate website_id
.
This enhancement makes the add_view
method more flexible, supporting both regular and website-specific views.