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
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj się| Powiązane posty | Odpowiedzi | Widoki | Czynność | |
|---|---|---|---|---|
|
1
gru 24
|
8240 | |||
|
3
sie 24
|
9088 | |||
|
how to know the odoo master password?
Rozwiązane
|
4
lip 24
|
44943 | ||
|
Default value in form view
Rozwiązane
|
5
kwi 23
|
103179 | ||
|
3
lis 22
|
6512 |
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 !