Browse Source

Merge pull request #81 from MouTio/fix_project_subtask_create_task_user

[9.0][FIX] project_subtask: A normal user can create tasks now via Create button
9.0
Cybrosys Technologies 7 years ago
committed by GitHub
parent
commit
4b8f2c84c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      project_subtask/__openerp__.py
  2. 2
      project_subtask/views/task_view.xml

2
project_subtask/__openerp__.py

@ -22,7 +22,7 @@
############################################################################## ##############################################################################
{ {
'name': 'Sub Tasks in Project', 'name': 'Sub Tasks in Project',
'version': '9.0.2.0.0', 'version': '9.0.2.0.1',
'summary': """Implementation & Reports of Sub-Task in Project Module""", 'summary': """Implementation & Reports of Sub-Task in Project Module""",
'description': 'This module helps you to create sub task under a task', 'description': 'This module helps you to create sub task under a task',
'category': 'Project Management', 'category': 'Project Management',

2
project_subtask/views/task_view.xml

@ -20,7 +20,7 @@
</page> </page>
</xpath> </xpath>
<field name="kanban_state" position="after"> <field name="kanban_state" position="after">
<field name="use_sub_task" invisible="1"/> <field name="use_sub_task" invisible="1" readonly="1"/>
<field name="subtask_count" invisible="1"/> <field name="subtask_count" invisible="1"/>
</field> </field>
<field name="stage_id" position="attributes"> <field name="stage_id" position="attributes">

Loading…
Cancel
Save