Daily updates from Odoo
Friday, December 6, 2024
3 changes · master
Resolved issues and error corrections
Manufacturing work orders now use the Google Slides viewer for embedded documents, replacing the previous viewer setup. This improves consistency with the wider platform change and helps operators view related instructions more reliably.
Original PR description
Following odoo/odoo#189309, clean the previous 'embed_viewer'.
Belgian payroll payslips now count half-day work entries as 0.5 days instead of a full day. This improves payroll accuracy and helps employees and payroll teams see the correct worked time on payslips.
Original PR description
half-day work entries should appear on the payslip as being 0.5 days instead of 1 task-4269240
Field service reports now include the time and materials section even when custom worksheets are turned off. This ensures customers and teams can still see added products in sent or downloaded reports, avoiding incomplete service documentation.
Original PR description
Steps: - Open Field Service - Open any task - Add products then go to task - Send report or download report Issue: - In field service report there is no 'time and material' section visible when 'custom worksheets' feature disabled in settings. Cause: - worksheet_custom_report_template is in industry_fsm_sale_report so when we disable 'custom worksheets' feature in settings the industry_fsm_sale_report is uninstalled so that the 'time & material' section is not visible Fix: - Add worksheet_custom_report_template in industry_fsm_sale so that it always visible when add the product. task-3484413