sale_order_template_views.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="sale_order_template_view_form_inherit_sale_quotation_builder" model="ir.ui.view">
  4. <field name="name">sale.order.template.form.inherit.sale_quotation_builder</field>
  5. <field name="inherit_id" ref="sale_management.sale_order_template_view_form"/>
  6. <field name="model">sale.order.template</field>
  7. <field name="type">form</field>
  8. <field name="arch" type="xml">
  9. <sheet position="before">
  10. <header>
  11. <button name="action_open_template" type="object" string="Design Template" class="oe_highlight"/>
  12. </header>
  13. </sheet>
  14. <xpath expr="//notebook[@name='description']" position="inside">
  15. <page string="Website Description" name="website_description">
  16. <field name="website_description" />
  17. </page>
  18. </xpath>
  19. <xpath expr="//tree/field[@name='product_uom_id']" position="after">
  20. <field name="website_description" invisible="1"/>
  21. </xpath>
  22. <xpath expr="//notebook[@name='main_book']" position="inside">
  23. <field name="website_description" invisible="1"/>
  24. </xpath>
  25. </field>
  26. </record>
  27. </odoo>