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.
15 lines
823 B
15 lines
823 B
<?xml version='1.0' encoding='utf-8'?>
|
|
<odoo>
|
|
<record id="sale_quatation_template_inherit_sale_order_form_quote" model="ir.ui.view">
|
|
<field name="name">sale.quatation.template.inherit.view.order.form</field>
|
|
<field name="model">sale.order</field>
|
|
<field name="inherit_id" ref="sale_management.sale_order_form_quote"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='sale_order_template_id']" position="after">
|
|
<button name="create_template" class="btn btn-link" style="left:280px !important; position: relative;" icon="fa-arrow-right"
|
|
string="Create Template" type="object"
|
|
attrs="{'invisible': [('sale_order_template_id', '!=', False)]}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|