Daily updates from Odoo
Friday, February 23, 2024
1 change
Code cleanup and technical improvements
Task forms and shared task forms now use a common structure, reducing duplicate setup and making future updates easier to manage. The shared task view also gains fields and behavior that were previously only available in the regular task view, creating a more consistent experience.
Original PR description
Before this commit project task and project sharing task form views were quit slimier but so different because both views contains their different code and because of that if we want do something on both of those views then we have to write same code twice so sometimes its hard to keep trace of what we need in both place and what we need in only one place also there is lots of redundant code because we need same thing in both places. This commit Make a common view which contains common data which we need both side and use this view in both places and while doing that also found some things that should be in sharing so this change will add all things we need in project sharing task form view. task-3231686