trytond-product_special_price/shop.xml

33 lines
1.2 KiB
XML
Executable File

<?xml version="1.0"?>
<!-- This file is part of product_special_price module for Tryton.
The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. -->
<tryton>
<data>
<!-- sale.shop -->
<record model="ir.ui.view" id="sale_shop_view_form">
<field name="model">sale.shop</field>
<field name="type">form</field>
<field name="inherit" ref="sale_shop.sale_shop_view_form"/>
<field name="arch" type="xml">
<![CDATA[
<data>
<xpath
expr="/form/notebook/page/field[@name='price_list']"
position="after">
<label name="special_price"/>
<field name="special_price"/>
<label name="type_special_price"/>
<field name="type_special_price"/>
<label name="special_pricelist"/>
<field name="special_pricelist" widget="selection"/>
</xpath>
</data>
]]>
</field>
</record>
</data>
</tryton>