Files
Odoo-18.0-20251222/base_exception/wizard/base_exception_confirm_view.xml
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

44 lines
1.7 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="view_exception_rule_confirm" model="ir.ui.view">
<field name="name">Exceptions Rules</field>
<field name="model">exception.rule.confirm</field>
<field name="arch" type="xml">
<form string="Outstanding exceptions to manager" version="7.0">
<group>
<field name="exception_ids" nolabel="1" colspan="2">
<list>
<field name="name" />
<field name="description" />
</list>
</field>
<newline />
</group>
<group>
<field
name="ignore"
groups='base_exception.group_exception_rule_manager'
/>
</group>
<footer>
<button
name="action_confirm"
string="Close"
colspan="1"
type="object"
class="btn-primary"
/>
</footer>
</form>
</field>
</record>
<record id="action_exception_rule_confirm" model="ir.actions.act_window">
<field name="name">Outstanding exceptions to manage</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">exception.rule.confirm</field>
<field name="view_mode">form</field>
<field name="view_id" ref="view_exception_rule_confirm" />
<field name="target">new</field>
</record>
</odoo>