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>
<!-- Boolean field for display the Quotation template inside the website -->
<record id="sale_order_template_view_form" model="ir.ui.view">
<field name="name">
sale.order.template.view.form.inherit.website.quotation.template
</field>
<field name="model">sale.order.template</field>
<field name="inherit_id"
ref="sale_management.sale_order_template_view_form"/>
<field name="arch" type="xml">
<xpath expr="//group[@name='sale_info']" position="inside">
<label for="is_available_in_website"/>
<field name="is_available_in_website" nolabel="1"/>
</xpath>
<xpath expr="//sheet" widget="image" class="oe_avatar"
position="inside">
<div class="oe_button_box" name="button_box">
<field style="margin-top:-450px; margin-right:50px;"
name="temp_img" widget="image" class="oe_avatar"/>
</div>
</xpath>
</field>
</record>
<!-- Menu for website quotation template -->
<menuitem id="website_quotation_template_menu"
name="Website Quotation Template"
action="sale_management.sale_order_template_action"
parent="website.menu_website_global_configuration"/>
</odoo>