Thursday, April 4, 2024
5 changes · master
Enhancements to existing features
Self-order kiosks now detect when a connected printer runs out of paper and alert both the kiosk user and the linked preparation displays. This helps staff react quickly and prevents orders from being delayed or missed because a receipt or ticket could not print.
Original PR description
This commit handles the case when no more paper in printer. It sends a notification the the preparations displays that are linked to the kiosk. And displays a popup on the kiosk to notify the user. Community: odoo/odoo#160284
Weekly planning views now show an occupancy percentage next to allocated hours when schedules are grouped by resource and another category. This helps managers quickly understand how fully each resource is booked using clear text in addition to existing color indicators.
Original PR description
In the gantt view, when grouping by resource > something else, this commit introduces an occupancy percentage that is displayed next to the aggregated allocated hours of each pill. This percentage actually represents the same information as the colors added in https://github.com/odoo/enterprise/pull/38343 but in a textual way. Note that the occupancy percentage is only displayed for the week scale. occupancy rate = total number of allocated hours for a given period of time / total number of hours to work for that period of time (according to the resource working calendar or the company calendar in case of flexible hours) task-3651242
Field service worksheet templates and reports are easier to manage, with clearer template selection, company visibility, and direct access to template design. Customer-facing reports are also cleaner, with better formatting, consistent PDF naming, and safeguards that prevent printing incomplete reports.
Original PR description
In this PR add following improvements: **worksheet, **industry_fsm_report - the 'company' and 'color' fields as optional and hidden by default in worksheet template list view. - add a group by…
In this PR add following improvements: **worksheet, **industry_fsm_report - the 'company' and 'color' fields as optional and hidden by default in worksheet template list view. - add a group by 'companies' on search view of worksheet. - add 'company' field under the name in kanban view of worksheet template. - update the description of the 'custom worksheets' feature and add link button that will redirect to the worksheet template. - sort records from newest to oldest in worksheet template. - update action helper of worksheet template analysis. - remove the 'create' option and only keep 'create and edit in product form view and project.project form view also add placeholder on worksheet template field - update log note on sign report of field service task and add pdf name same as send report. - display the labels in bold + display values closer to their labels also add striped stlye on rows of worksheet report. - raise user error on printing report without timesheet or workseet or product. - set the 'worksheet template' as the project is selected instead of doing it on save of product form view. - worksheet template field on create and edit in product,project and task: - hide the 'analysis' button - add a 'design template' primary button task-3504607
Point of Sale receipts in the Chilean localization now include the bidimensional code and header information needed to qualify as valid electronic documents. Credit notes for refunded invoices now show only the required document number, improving compliance and consistency with backend refunds.
Original PR description
This commit adds the bidimensional code on the receipt, it also adds to the receipt header the requirements for considering the receipt as a valid electronic document. It also changes the code shown on the credit note when refunding a previous invoice. Before the commit, it was showing the full name (eg. BEL 00001), but we actually need to have only the number (eg. 00001) as it is done when refunding from the backend. task-id: 3747828 Community PR: odoo/odoo#159671
Payroll report entries now take users directly to the corresponding payslip instead of opening a confusing technical report form. This makes payroll review faster and clearer for users who need to inspect payslip details from reports.
Original PR description
Clicking upon the payroll report opens the form view of the report which is very confusing for some users In this PR, clicking on the payroll report now opens the related payslip. task-3716854