Tuesday, October 15, 2024
6 changes · master
Enhancements to existing features
The planning time-off module's automated tests were moved to a newer testing framework. This helps keep future maintenance more reliable without changing day-to-day user behavior.
Original PR description
Purpose of this PR: This PR aims to convert QUnit tests which rely on mail/test_utils to hoot. Part of task: 3818666
Users processing Indian vendor bills can now type an IRN manually when scanning is not possible or convenient. This reduces friction in bill entry workflows by providing an alternative to QR code scanning while reusing shared barcode entry components.
Original PR description
This commit introduces a manual IRN entry option. As of now, only the QR code scan option is available, now the user can enter the IRN number manually. Steps:- - Open Vendor Bills - Click on the scan button - Click on Tap to scan the Bill button A new input is provided to enter IRN number manually. This Commit moves the file `manual_barcode.js` and `manual_barcode.xml` to barcodes module which is in community version. Com PR - https://github.com/odoo/odoo/pull/171934 task-4022648
The accounting reports tests now set the country before applying country-based availability rules. This keeps the test process aligned with the latest validation requirements and helps prevent avoidable failures during development.
Original PR description
In the community PR, a constraint on the availability_condition was added, where if availability_condition is set to country, the country_id should be set. Therefore, in tests where the availability condition is set to country, the country should be set before. task-4160643
This update aligns internal Python class names with their corresponding Odoo model names across accounting-related modules. It improves code consistency and maintainability without changing day-to-day business workflows.
Original PR description
see: https://github.com/odoo/odoo/pull/178200
GSTR-1 reporting for Indian GST is now calculated from journal entries rather than lower-level journal items. This should make the generated GST return data more accurate and efficient, including for point-of-sale related reporting.
Original PR description
In this PR the GSTR-1 computation process has the following changes: - Switch to Journal Entries: GSTR-1 JSON computation is now based on journal entries instead of journal items. - JSON Retrieval: Fetch JSON data from the `l10n_in_gstr_json` field in journal entries and adjust all GSTR-1 computations accordingly. - Method Removal: Moved the `_get_tax_details()` in `l10n_in` and removed `_get_section_domain()` method as it is no longer necessary. - Section Determination: The GST section is now determined using the `l10n_in_gstr_json` and `l10n_in_gstr_section` fields in journal entries. - Method Update: Adjusted the `l10n_in_round_value` method call to reflect its shift from `account.edi.format` to `account.move`. These improvements streamline the GSTR-1 computation process and enhance the accuracy and efficiency of GST reporting. task id: 3941950 related PR: https://github.com/odoo/odoo/pull/173851
This update standardizes the names, categories, and short descriptions of service-related Odoo modules. It makes app listings clearer and more consistent for users browsing project, timesheet, helpdesk, field service, and planning features.
Original PR description
Cleaning of the name, category and summary of every module linked to services applications (project, timesheet, helpdesk, field service, planning) taskid:3524126