trytond-sale_discount_old/move.xml

25 lines
882 B
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="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;currency&quot;]"
position="before">
<newline/>
<label name="discount"/>
<field name="discount"/>
</xpath>
</data>
]]>
</field>
</record>
</data>
</tryton>