trytond-sale_discount_old/sale.xml

54 lines
2.0 KiB
XML

<?xml version="1.0"?>
<!-- This file is part sale_discount module for Tryton.
The COPYRIGHT file at the top level of this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.ui.view" id="sale_line_view_tree">
<field name="model">sale.line</field>
<field name="inherit" ref="sale.sale_line_view_tree"/>
<field name="arch" type="xml">
<![CDATA[
<data>
<xpath
expr="/tree/field[@name=&quot;amount&quot;]"
position="before">
<field name="discount"/>
</xpath>
</data>
]]>
</field>
</record>
<record model="ir.ui.view" id="sale_line_view_tree_sequence">
<field name="model">sale.line</field>
<field name="inherit" ref="sale.sale_line_view_tree_sequence"/>
<field name="arch" type="xml">
<![CDATA[
<data>
<xpath
expr="/tree/field[@name=&quot;amount&quot;]"
position="before">
<field name="discount"/>
</xpath>
</data>
]]>
</field>
</record>
<record model="ir.ui.view" id="sale_line_view_form">
<field name="model">sale.line</field>
<field name="inherit" ref="sale.sale_line_view_form"/>
<field name="arch" type="xml">
<![CDATA[
<data>
<xpath
expr="/form/notebook/page/label[@name=&quot;unit&quot;]"
position="before">
<label name="discount"/>
<field name="discount"/>
</xpath>
</data>
]]>
</field>
</record>
</data>
</tryton>