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.
 
 
 
 
 

30 lines
1.4 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Quotation sequence field in fom view -->
<record id="view_order_form" model="ir.ui.view">
<field name="name">sale.order.view.form.inherit.separate_quotation_number_odoo</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<xpath expr="//sheet/div/h1/field[@name='name']" position="after">
<field name="quotation_ref"
attrs="{'invisible': [('state', 'not in', ['draft','sent'])]}"/>
</xpath>
<xpath expr="//sheet/div/h1/field[@name='name']" position="replace">
<field name="name"
attrs="{'invisible': [('state', 'not in', ['sale'])]}"/>
</xpath>
</field>
</record>
<!-- Quotation sequence field in tree view -->
<record id="view_quotation_tree" model="ir.ui.view">
<field name="name">sale.order.view.tree.inherit.separate_quotation_number_odoo</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_quotation_tree"/>
<field name="arch" type="xml">
<xpath expr="//tree/field[@name='name']" position="after">
<field name="quotation_ref"/>
</xpath>
</field>
</record>
</odoo>