You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
721 B
17 lines
721 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- It adds a new field 'so_double_validation' after the 'favicon' field.
|
|
This is used to enable double validation for sale orders within the company settings. -->
|
|
<record id="view_company_form" model="ir.ui.view">
|
|
<field name="name">
|
|
res.company.form.view.inherit.sales.order.double.approval
|
|
</field>
|
|
<field name="model">res.company</field>
|
|
<field name="inherit_id" ref="base.view_company_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='color']" position="after">
|
|
<field name="so_double_validation"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|