Thursday, December 15, 2022
2 changes · master
Resolved issues and error corrections
Fixed payment provider fees are now shown as monetary amounts and converted into the selected payment currency. This helps businesses display and calculate payment fees accurately for customers using different currencies.
Original PR description
Payment fees appeared as float (and not monetary) in the Payment provider form and were not converted into the chosen payment currency task-2854143 See also: - https://github.com/odoo/upgrade/pull/4106
Duplicating a field service task now keeps the worksheet templates manually set on its subtasks. This prevents teams from losing task-specific worksheet setup and having it overwritten by the project default.
Original PR description
Steps to reproduce: - We have to go to any project with subt-tasks and workseets enabled. - We create a new task with a few sub-tasks inside and select manually a worksheet template for each sub-task. - We duplicate this task. Issue: When we duplicate the task we lose the sub-tasks worksheet templates and they're replaced by the default project worksheet template. Solution: Following the same flow of computing the worksheets templates in project , we have to add the proper condition to not lose the worksheet template of the task if it has one already. This bug affects all versions from saas-15.2 until master. opw-3058207