Extend Odoo's Project module with advanced task tracking, sprint management, and customized project screens for agile teams
Your customer needs to add a "Type" field to project tasks in the Odoo Projects module. This field will allow for additional classification of project tasks, helping users to better organize and manage their workflow..
Project → Projects → Tasks
project.task
model add the following:Your customer needs to implement a Unique Code field for each project task in Odoo.
Project → Projects → Tasks
project.task
model to add the new Unique Code field.it is read-only field.project_id
field.project_id
field.name
field.Your customer needs to implement a Department field for each task in Odoo.
Project → Projects → Task
project.task
model add the new Department field.hr.department
model, This links the task to a specific department. partner_id
field.user_ids
field.Your customer needs to implement rules in Odoo to ensure that only task creators and assignees with can see their own tasks within a project
project.task
that restricts access to tasks based on the creator or the assignees.Your customer needs to display an image for each project in the Kanban view. This visual representation will help users quickly identify and differentiate between various projects.
project.project
model as the following:Your customer needs to implement a Department field for each project in Odoo.
Project → Configurations → Projects
project.project
model add the new Department field.hr.department
model, This links the project to a specific department. Name
field.Your customer needs to compare estimated budgets with actual costs in real-time.
project.project
model add the new Expected Budget and Actual Cost fields.