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
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
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
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.
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
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
3
Aug 24
|
5507 | ||
|
4
Jul 24
|
38819 | ||
Default value in form view
Solved
|
|
5
Apr 23
|
93756 | |
|
3
Nov 22
|
2959 | ||
|
3
Aug 22
|
3042 |
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 !