Files
suite/project_exception/views/project_views.xml

67 lines
3.0 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="action_project_test_tree" model="ir.actions.act_window">
<field name="name">Project Exception Rules</field>
<field name="res_model">exception.rule</field>
<!-- What about kanban view?, because kanban is the default view type for Project -->
<field name="view_mode">tree,form</field>
<field name="view_id" ref="base_exception.view_exception_rule_tree"/>
<field name="domain">[('model', '=', 'project.task')]</field>
<field name="context">{'active_test': False, 'default_model' : 'project.task'}</field>
</record>
<menuitem
action="action_project_test_tree"
id="menu_project_test"
sequence="10"
parent="project.menu_project_config"
groups="base_exception.group_exception_rule_manager"
/>
<record id="view_task_form2" model="ir.ui.view">
<field name="name">project.task.form.inherit.exception</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_form2"/>
<field name="arch" type="xml">
<sheet position="before">
<div class="alert alert-danger" role="alert" style="margin-bottom:0px;"
attrs="{'invisible': [('exceptions_summary','=',False)]}">
<p><strong>There are exceptions blocking the confirmation of this Task:</strong></p>
<field name="exceptions_summary"/>
<button name="action_ignore_exceptions" type="object" class="btn-danger"
string="Ignore Exceptions" help="Click here to be able to confirm this Task regardless of the exceptions."
groups="base_exception.group_exception_rule_manager"/>
</div>
</sheet>
<xpath expr="//field[@name='tag_ids']" position="after">
<field name="ignore_exception" />
</xpath>
</field>
</record>
<record id="view_task_tree2" model="ir.ui.view">
<field name="name">project.task.tree.inherit.exception</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_tree2"/>
<field name="arch" type="xml">
<field name="stage_id" position="after">
<field name="main_exception_id"/>
</field>
</field>
</record>
<record id="view_task_search_form" model="ir.ui.view">
<field name="name">project.task.search.form.inherit.exception</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_search_form" />
<field name="arch" type="xml">
<filter name="inactive" position="before">
<separator orientation="vertical"/>
<filter icon="terp-emblem-important" name="tofix" string="Blocked by exceptions" domain="[('main_exception_id','!=',False)]"/>
</filter>
</field>
</record>
</odoo>