Files
suite/sale_section_subtotal/views/sale_views.xml
Jared Kipe 666e6fea25 [ADD] sale_section_subtotal: for Odoo 13.0
Uses 'price_subtotal' as the 'section-subtotal-field' on sale order tree view.
2020-10-08 16:35:23 -07:00

16 lines
543 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="view_order_form_inherit" model="ir.ui.view">
<field name="name">sale.order.form.inherit</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='order_line']/tree" position="attributes">
<attribute name="section-subtotal-field">price_subtotal</attribute>
</xpath>
</field>
</record>
</odoo>