Files
suite/timesheet_exception/wizard/timesheet_exception_confirm_views.xml

26 lines
1.0 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="view_timesheet_exception_confirm" model="ir.ui.view">
<field name="name">Timesheet Exceptions Rules</field>
<field name="model">timesheet.exception.confirm</field>
<field name="inherit_id" ref="base_exception.view_exception_rule_confirm"/>
<field name="mode">primary</field>
<field name="arch" type="xml">
<xpath expr="//footer" position="inside">
<button class="oe_link" special="cancel" string="Cancel"/>
</xpath>
</field>
</record>
<record id="action_timesheet_exception_confirm" model="ir.actions.act_window">
<field name="name">Blocked due to exceptions</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">timesheet.exception.confirm</field>
<field name="view_mode">form</field>
<field name="view_id" ref="view_timesheet_exception_confirm"/>
<field name="target">new</field>
</record>
</odoo>