-
- Downloads
[IMP] *: remove widget='selection' from many2one fields
Currently, across Odoo, there are around 40+ many2one fields defined with a
'selection' widget. Since the many2one widget has options to limit record
creation and opening, there is no reason to define a many2one field with a
selection widget. The selection widget does not allow for searching, and is
limited to 100 records.
PURPOSE
to update the definition of any many2one on which we applied a 'selection'
widget, and instead use the standard many2one widget with disabled
opening/creation instead.
after this commit,
for each many2one field defined with widget="selection", widget="selection" is
replaced with options="{'no_open': True, 'no_create': True}"
Task : 2476488
closes odoo/odoo#68387
Related: odoo/enterprise#17316
Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
Showing
- addons/account/views/account_bank_statement_views.xml 1 addition, 1 deletionaddons/account/views/account_bank_statement_views.xml
- addons/account/views/account_payment_view.xml 1 addition, 1 deletionaddons/account/views/account_payment_view.xml
- addons/account/views/partner_view.xml 2 additions, 2 deletionsaddons/account/views/partner_view.xml
- addons/account/views/res_config_settings_views.xml 1 addition, 1 deletionaddons/account/views/res_config_settings_views.xml
- addons/account/wizard/account_payment_register_views.xml 1 addition, 1 deletionaddons/account/wizard/account_payment_register_views.xml
- addons/account/wizard/wizard_tax_adjustments_view.xml 1 addition, 1 deletionaddons/account/wizard/wizard_tax_adjustments_view.xml
- addons/account_check_printing/views/res_partner_views.xml 1 addition, 1 deletionaddons/account_check_printing/views/res_partner_views.xml
- addons/crm/views/crm_lead_views.xml 1 addition, 1 deletionaddons/crm/views/crm_lead_views.xml
- addons/crm/wizard/crm_lead_to_opportunity_views.xml 1 addition, 1 deletionaddons/crm/wizard/crm_lead_to_opportunity_views.xml
- addons/hr_expense/views/hr_expense_views.xml 1 addition, 1 deletionaddons/hr_expense/views/hr_expense_views.xml
- addons/mass_mailing/views/mailing_mailing_views.xml 1 addition, 1 deletionaddons/mass_mailing/views/mailing_mailing_views.xml
- addons/membership/wizard/membership_invoice_views.xml 1 addition, 1 deletionaddons/membership/wizard/membership_invoice_views.xml
- addons/mrp/views/mrp_workcenter_views.xml 1 addition, 1 deletionaddons/mrp/views/mrp_workcenter_views.xml
- addons/point_of_sale/views/pos_config_view.xml 1 addition, 1 deletionaddons/point_of_sale/views/pos_config_view.xml
- addons/purchase_requisition_stock/views/purchase_requisition_views.xml 1 addition, 1 deletion...se_requisition_stock/views/purchase_requisition_views.xml
- addons/sale_stock/views/sale_order_views.xml 1 addition, 1 deletionaddons/sale_stock/views/sale_order_views.xml
- addons/stock/views/stock_orderpoint_views.xml 1 addition, 1 deletionaddons/stock/views/stock_orderpoint_views.xml
- addons/stock/wizard/stock_change_product_qty_views.xml 1 addition, 1 deletionaddons/stock/wizard/stock_change_product_qty_views.xml
- addons/website/views/res_config_settings_views.xml 2 additions, 2 deletionsaddons/website/views/res_config_settings_views.xml
- addons/website/views/website_views.xml 2 additions, 2 deletionsaddons/website/views/website_views.xml
Loading
Please register or sign in to comment