Friday, June 2, 2023
5 changes
Enhancements to existing features
Recruitment demo applicants now include an attached CV, making sample applicant records more complete and realistic. Automatic OCR processing is disabled for these CVs, helping avoid unnecessary automated document scanning in this context.
Original PR description
…able auto OCR task-3254698
Users can now cancel subscriptions that have not yet been invoiced, instead of closing them. This prevents mistaken duplicate subscriptions from being counted as customer churn when the customer is still active.
Original PR description
When 2 subscriptions were started for the same customer by error, it is not possible to cancel one of them, you can only close it but it creates a churn event when it was not a churn as the customer is still there. This PR allow cancelation of subscription that have not been invoiced yet. task-id : 3245825
Documents users can now start a vendor receipt directly from a document workflow action. The option appears only when the Purchase Receipt feature is enabled in Accounting, helping teams process supplier paperwork from the Documents app without extra navigation.
Original PR description
… app PURPOSE ------- - The document user can create a vendor receipt from a document application. SPECIFICATIONS -------------- - Added a new 'vendor receipt' on workflow Actions - The Action is only visible when the 'Purchase Receipt' feature is enabled from the Accounting app. task-3222420
Resolved issues and error corrections
Fixes Studio approval setup so enabling approvals automatically creates the expected first rule. Approval button previews now update when rules change, with minor visual improvements for a smoother configuration experience.
Original PR description
**Retargeted https://github.com/odoo/enterprise/pull/41332** This commit corrects some behaviours or issues caused by the migration to OWL of Studio with regards to the Studio Approvals flow. - When enabling approvals, there should be a new rule added by default. - Preview icons in the button should be reactive, update when the rules are. Some styling has also been fixed and improved. Task id: 3291968
Appraisal publishing now consistently shows the required warning to every user who is allowed to toggle publication, including selected appraisal managers. The update also simplifies manager-related logic and moves shared employee autocomplete data to the employee model for cleaner maintenance.
Original PR description
Behavior before commit: A user without appraisal rights or without being the direct manager of an employee but being selected in the manager_ids of an appraisal could publish it without having the warning like everyone else. Desired Behavior: Any user capable of toggling the publish button should have a warning. Behavior after commit: Computation of is_manager significantly simplified, merged is_appraisal_manager and is_implicit_manager into one field, as there is no difference between them. Employee_autocomplete_ids moved to hr_employee because it's not affected by the appraisal. Any user capable of toggling the button receives the warning first. task 3217812