Tuesday, August 9, 2022
2 changes · master
New functionality added to Odoo
Knowledge articles can now include an automatically updated table of contents based on the page headings. Users can click a section in the table to jump directly to that part of the article, making longer content easier to navigate in both editing and public views.
Original PR description
Purpose ======== Allow users to create a table of contents dynamically listing all headers in the page. When clicking on a section name, the page will scroll (both in back end and front end view) to the selected heather and highlight it for a brief interval of time. Task-2818474 Co-authored-by: Aurélien Warnon <awa@odoo.com> Co-authored-by: julien-banken <jbn@odoo.com> Co-authored-by: abd-msyukyu-odoo <abd@odoo.com> Co-authored-by: fbarbe00 <faba@odoo.com>
Resolved issues and error corrections
This change moves delivered price fields into the core field service sales module so they are available whenever needed. It prevents errors when signing reports if the reporting add-on is not installed first, making the workflow more reliable for users.
Original PR description
Before this commit: - delivered_price_subtotal, delivered_price_tax and delivered_price_total fields are added in industry_fsm_sale_report but used in industry_fsm_sale. An error occured when trying to sign report as industry_fsm_sale can be installed before installing industry_fsm_sale_report. After this commit: - delivered_price_subtotal, delivered_price_tax and delivered_price_total and delivered_price_subtotal, delivered_price_tax and delivered_price_total moved to sale_order_line.py in industry_fsm_sale. Task-2892346