This question has been flagged
2 Replies
2900 Views

In project mgmt module I have created one task and I have to send to user.Here before sending the task to user we need manager approval.Is it possible to get approval for task level in odoo9.

How can I do that?.Pls let me know

Avatar
Discard

You can add button 'Assign Task' which will be visible for Manager and on click of it it will open popup which ask input to assign to whom or which user .By doing this Customisation you can achieve your goal !

Best Answer

As far as I know, there is no task approval feature until Odoo Version 14. Therefore, you may need Customization Work here. It may not  be possible for a non-technical user to do Customization Work. Therefore, it is better to use Odoo Service or Odoo Partner Service. 

Avatar
Discard
Best Answer

Hi,

I think for this you can create a record rule like this,

<record id="id_for_the_rule" model="ir.rule">	
    <field name="name">Task Visibility</field>
    <field ref="model_project_task" name="model_id"/>
    <field name="domain_force">[('state', '=', 'state_name')]</field>
    <field name="groups" eval="[(4, ref('user_group_name'))]"/>
</record>

This will make the users to view the task only in approved state.


Thanks

Avatar
Discard