trytond-sale_discount_old/move.xml

25 lines
863 B
XML
Raw Normal View History

<?xml version="1.0"?>
<!-- This file is part of 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="move_view_form">
<field name="model">stock.move</field>
<field name="inherit" ref="stock.move_view_form"/>
<field name="arch" type="xml">
<![CDATA[
<data>
<xpath
expr="/form/label[@name=&quot;unit_price&quot;]"
position="before">
<newline/>
<label name="discount"/>
<field name="discount"/>
</xpath>
</data>
]]>
</field>
</record>
</data>
</tryton>