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.
34 lines
1.4 KiB
34 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"
|
|
invisible="state not in ['draft','sent']"/>
|
|
</xpath>
|
|
<xpath expr="//sheet/div/h1/field[@name='name']" position="replace">
|
|
<field name="name"
|
|
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>
|
|
|