oca-project/odoo-bringout-oca-project-project_milestone_status/project_milestone_status/views/project_views.xml
Ernad Husremovic 6094c218b2 Move 124 sale modules to oca-sale, create oca-project with 56 project modules from oca-workflow-process
🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-30 18:04:10 +02:00

24 lines
974 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="act_excuted_project_task" model="ir.actions.act_window">
<field name="name">Tasks</field>
<field name="res_model">project.task</field>
<field name="view_mode">tree,form</field>
<field name="domain">[('display_project_id', '=', active_id)]</field>
<field name="context">{
'default_project_id': active_id,
'show_project_update': True,
}</field>
<field name="search_view_id" ref="project.view_task_search_form" />
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
No tasks found. Let's create one!
</p>
<p>
Keep track of the progress of your tasks from creation to completion.<br
/>
Collaborate efficiently by chatting in real-time or via email.
</p>
</field>
</record>
</odoo>