Wednesday, June 1, 2022
2 changes · master
New functionality added to Odoo
Odoo now lets users initiate full refunds for payments made through Authorize.Net directly from the system. If a transaction has not yet settled and cannot be refunded, Odoo will void it instead, helping teams manage payment reversals without leaving Odoo.
Original PR description
Users can now ask for a refund from Odoo for their transactions done through Authorize.net. A refund will be triggered from Odoo when necessary. Only full refunds are possible. Note that unsettled transactions will be voided as they cannot be refunded. Task - 2678757 Continuation of https://github.com/odoo/odoo/pull/79417 See also - https://github.com/odoo/documentation/pull/2091
Project teams can now connect tasks directly to milestones, making it easier to see what work is needed before a milestone is reached. The update adds milestone-based task filters, progress cues, completion prompts, project sharing visibility, and tighter sales invoicing behavior when milestone billing is enabled or disabled.
Original PR description
Purpose ======= The goal of this PR is to create a link between milestones and tasks. Indeed, milestones usually contain a set of tasks. Once all of these tasks are done, the milestone can be…
Purpose ======= The goal of this PR is to create a link between milestones and tasks. Indeed, milestones usually contain a set of tasks. Once all of these tasks are done, the milestone can be considered as reached. This link would help users organize their projects more efficiently and have a better overview of what needs to be done when. ## Implementation details - A new many2one field is added in the `project.task` called `milestone_id` to link a milestone to tasks. - Add `Milestones` as global setting and project setting. It means the user will can globally enable the feature and choose in which project he wants to use the feature. - In the form view of milestone, a stat button is added to display the tasks linked to current milestone. - Add `Late Milestone` filter in tasks, when this filter is applied the user will see the tasks linked to a milestone with a deadline in the past. This filter is also added in the Burndown chart and Tasks analysis report. - When the user set a milestone on a task and no SOL is found in the project and/or parent task related then set the SOL of the milestone as a default SOL for the task. - Display in green the milestone in project update view if all tasks linked to that milestone are in a closed stage. - When a user changes a stage of a task to a closed stage, a wizard will be displayed if the task is linked to a milestone and all others tasks are in a closed stage too. This wizard will allow the user to reach the milestone since all tasks linked to that milestone are considered as finished. - Remove `delivered_milestone` option in the `invoice_policy` selection field in `product.template` model when the Milestones feature is globally disabled. If some products are milestone one than they will be converted into a manual service ones to allow the user to manually set the quantity delivered for those products. - Display the milestone field in task in Project Sharing feature. task-2829542