bemade-addons/preamble_on_quotation/views/sale_order_views.xml

15 lines
714 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_order_form_inherit_preamble" model="ir.ui.view">
<field name="name">sale.order.form.inherit.preamble</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<xpath expr="//page[@name='other_information']" position="after">
<page string="Quotation Preamble" name="quotation_preamble">
<field name="preamble" nolabel="1" placeholder="Add an HTML preamble to be displayed at the top of the quotation PDF..."/>
</page>
</xpath>
</field>
</record>
</odoo>