Daily updates from Odoo
Tuesday, December 3, 2024
4 changes · master
Enhancements to existing features
The recruitment analysis report has been renamed from Applicant Analysis to Application Analysis for clearer wording. Users can now filter out duplicate applications for the same job position, making reporting cleaner and easier to interpret.
Original PR description
`Applicant Analysis` report was renamed to `Application Analysis`. This PR also adds a filter which allows the user to filter out duplicate applications for a job position. A duplicate application is defined as an application to a job position where there is already another application with the same candidate_id. Task-4222501
General Ledger Excel exports now show both the foreign currency amount and the related currency code for multi-currency companies. This makes exported reports clearer for business users while leaving the on-screen report and PDF export unchanged.
Original PR description
The general ledger report has a column 'Currency' for multi-currency companies. This column includes the symbol of the currency in the view and in the PDF export. However in the Excel report, the column does not include the currency symbol, and the user has no information about what currency the column is in. This solution: - Renames the 'Currency' column to 'Amount Currency', which contains the amount as before - Adds a column 'Currency' with the currency code. - Adds an option 'show_currency' to ensure that the new column is only displayed in an excel report, by overriding export_to_xlsx. As a result of this commit, there are no changes to the view or PDF export, but in the Excel export, an additional column with the currency code is visible. task-4011008
The Documents chatter has been visually refreshed to feel more polished and easier to use. This improves the day-to-day experience for users reviewing document discussions and activity.
Original PR description
The chatter has been enhanced for a more polished and user-friendly experience, featuring updated text and design for improved functionality and appeal. **FROM** https://tinyurl.com/2752tz2d **TO** https://tinyurl.com/2bow4ade Task-4312893
Departure reason codes are now managed separately for each country where they are needed, instead of using one shared code field. This helps Belgian and Saudi payroll processes use the correct local codes and avoids confusion when different countries require different values.
Original PR description
Remove the `reason_code` from `hr.hr_departure_reason` because it is only relevant in certain localizations. Replace with one field per localization where it is relevant, this is needed because the code is not necessarily the same in every localization that uses it. task-4320913