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
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 up| Related Posts | Replies | Views | Activity | |
|---|---|---|---|---|
|
1
Dec 24
|
8230 | |||
|
3
Aug 24
|
9076 | |||
|
4
Jul 24
|
44933 | |||
|
Default value in form view
Solved
|
5
Apr 23
|
103158 | ||
|
3
Nov 22
|
6508 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
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 !