Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project_ux/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Several improvements to project:
#. Adds:
- 2 new filters: "Is Task"& "Is Sub-Task"
- 1 new agroupation: "Parent-Task"
#. Re-incorporates the wizard that allows to select an existing task to be converted as a sub-task in the sub-task tab (in the migration to 17, when you press on "Add line" in the sub-task tab, you could only create new sub-tasks, not convert the existing tasks to sub-tasks)
#. Re-incorporates the wizard that allows to select an existing task to be converted as a sub-task in the sub-task tab (allows converting existing tasks to sub-tasks)
#. Incorporates a tab inside the project form view called "Task stages" that allows to select (or create) the task stages that will apply to that project.
#. Incorporates an option inside the tasks stage configurations that allows to automatically set a state to the tasks when they are moved to these stages.
#. Re-incorporate the field is_closed in the tasks, under the label "Folded in kanban"
Expand Down
4 changes: 2 additions & 2 deletions project_ux/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
"name": "Project UX",
"version": "18.0.1.1.0",
"version": "19.0.1.0.0",
"category": "Project Management",
"sequence": 14,
"author": "ADHOC SA",
Expand All @@ -36,7 +36,7 @@
"views/project_task_type_views.xml",
],
"demo": [],
"installable": False,
"installable": True,
"auto_install": False,
"application": False,
}
2 changes: 1 addition & 1 deletion project_ux/views/project_project_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<field name="sequence" optional="show"/>
<field name="name"/>
<field name="mail_template_id" optional="hide"/>
<field name="rating_template_id" optional="hide" groups="project.group_project_rating"/>
<field name="rating_template_id" optional="hide"/>
<field name="fold" optional="show"/>
<field name="user_id" optional="show"/>
</list>
Expand Down