mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
16 lines
533 B
XML
16 lines
533 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
|
|
<record id="exception_rule_form_inherit" model="ir.ui.view">
|
|
<field name="name">exception.rule.form.inherit</field>
|
|
<field name="model">exception.rule</field>
|
|
<field name="inherit_id" ref="base_exception.view_exception_rule_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='description']" position="after">
|
|
<field name="website_description"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|