Search
Navigate
Branch
Friday, February 12, 2021
14 changes
New functionality added to Odoo
A new Schedule III profit and loss report has been added for Indian localization. This helps businesses in India access financial reporting aligned with local statutory presentation needs directly in Odoo.
Original PR description
Purpose of the task is to add a new profit and loss schedule3 report in indian localization. So in this commit, Added a new profit and loss schedule3 report in indian localization. Links PR #16230 TaskID: 2391152
A new Schedule 3 balance sheet report is now available for Indian localization. This helps Indian businesses prepare financial statements in the required local format more easily and consistently.
Original PR description
Purpose of the task is to add a new balance sheet schedule3 report in indian localization. So in this commit, Added a new balance sheet schedule3 report in indian localization. Links PR #16231 TaskID: 2381149
Enhancements to existing features
The electronic signature template screen now shows a clearer tooltip, helping users better understand the related action or information. This small wording improvement reduces confusion during document setup and signing workflows.
Resolved issues and error corrections
This fix ensures that when a new menu is created in Studio for a model, the related window action includes a default view mode. This prevents menus from opening incorrectly or failing due to missing view settings, making Studio-created menus more reliable.
Original PR description
Currently, in master when creating a menu for a model that have a windows action because default view mode is not set. So, in this commit when creating a menu for a model set default view mode in new window action. TaskId: 2248384
Miscellaneous changes
Linked to PR https://github.com/odoo/odoo/pull/64599 This commit prevents the opening/closure of a channel on mobile when the action is performed on desktop and reciprocally tasks-id: 2267593 In enterprise, this test needed to be fixed in order to make the mentioned PR work Forward-Port-Of: odoo/enterprise#16296
Original PR description
Linked to PR https://github.com/odoo/odoo/pull/64599 This commit prevents the opening/closure of a channel on mobile when the action is performed on desktop and reciprocally tasks-id: 2267593 In enterprise, this test needed to be fixed in order to make the mentioned PR work Forward-Port-Of: odoo/enterprise#16296
The referral link sharing screen now gives the copy widget more room. This makes it easier for users to view and copy referral links without the field feeling cramped.
Web Studio now blocks custom field names that contain double underscores and avoids creating them automatically when users start a name with an underscore. This helps prevent invalid or problematic field names before they can affect configuration or data model setup.
Original PR description
Purpose do not allow to generate field names with double underscores Specification Prevent double underscores in custom field names (leading or non-leading) e.g. if field name contains any double underscore, it raises an error field name with starting underscore will not generate field names with double underscores automatically. e.g. if the input is '_label', the field should not renamed to 'x_studio__label' but to 'x_studio_label'. task - 2060257
A missing tooltip has been added to the Dashboard option in Studio’s view switcher. This makes the interface clearer and helps users understand the available view choices more easily.
Display a friendly error message when a (simple) user tries to access an application form. TaskID: 2427871 Forward-Port-Of: odoo/enterprise#16275
Original PR description
Display a friendly error message when a (simple) user tries to access an application form. TaskID: 2427871 Forward-Port-Of: odoo/enterprise#16275
The button "Regenerate work entries" was no longer displayed on the Gantt view since `f68e5a6b`. TaskID: 2447940 Forward-Port-Of: odoo/enterprise#15965
Original PR description
The button "Regenerate work entries" was no longer displayed on the Gantt view since `f68e5a6b`. TaskID: 2447940 Forward-Port-Of: odoo/enterprise#15965
… address When using the external trade, if a partner_shipping_id (Delivery Address) is present, a traceback was raised. opw-2427677 Forward-Port-Of: odoo/enterprise#16206 Forward-Port-Of: odoo/enterprise#16179
Original PR description
… address When using the external trade, if a partner_shipping_id (Delivery Address) is present, a traceback was raised. opw-2427677 Forward-Port-Of: odoo/enterprise#16206 Forward-Port-Of: odoo/enterprise#16179
…eave Forward-Port-Of: odoo/enterprise#16239
Original PR description
…eave Forward-Port-Of: odoo/enterprise#16239
This case was broken in saas-14.1. We fixed it in community with https://github.com/odoo/odoo/pull/65931 . Forward-Port-Of: odoo/enterprise#16273
Original PR description
This case was broken in saas-14.1. We fixed it in community with https://github.com/odoo/odoo/pull/65931 . Forward-Port-Of: odoo/enterprise#16273
This commit fixes the issue described hereafter. What are the steps to reproduce your issue ? 1. Install 'timesheet_grid' 2. Go to timesheet and press shift key before entering a cell 3. Try to enter a timesheet with keyboard in the format HH:MM What is currently happening ? With some keyboard layouts shift button must be used to print ":", but in timesheet there is already a shortcut with Shift which prevents to set timesheet properly What are you expe
Original PR description
This commit fixes the issue described hereafter.
What are the steps to reproduce your issue ?
1. Install 'timesheet_grid'
2. Go to timesheet and press shift key before entering a cell
3. Try to enter a timesheet with keyboard in the format HH:MM
What is currently happening ?
With some keyboard layouts shift button must be used to print ":",
but in timesheet there is already a shortcut with Shift which
prevents to set timesheet properly
What are you expecting to happen ?
When typing, press or unpress shift without selecting the whole cell
How to fix the bug ?
Don't trigger the Shift event if renderer is in edit mode.
task-2389731
Forward-Port-Of: odoo/enterprise#16002