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
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
Daftar| Post Terkait | Replies | Tampilan | Aktivitas | |
|---|---|---|---|---|
|
1
Des 24
|
8225 | |||
|
3
Agu 24
|
9075 | |||
|
how to know the odoo master password?
Diselesaikan
|
4
Jul 24
|
44926 | ||
|
Default value in form view
Diselesaikan
|
5
Apr 23
|
103152 | ||
|
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 !