trytond-stock_lot_expiry/stock.xml

40 lines
1.5 KiB
XML

<?xml version="1.0"?>
<!-- The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. -->
<tryton>
<data>
<!-- product.product -->
<record model="ir.ui.view" id="product_view_form">
<field name="model">product.template</field>
<field name="inherit" ref="product.template_view_form"/>
<field name="name">product_form</field>
</record>
<record model="ir.ui.view" id="product_view_list">
<field name="model">product.template</field>
<field name="inherit" ref="product.template_view_tree"/>
<field name="name">product_list</field>
</record>
<!-- stock.lot -->
<record model="ir.ui.view" id="lot_view_list">
<field name="model">stock.lot</field>
<field name="inherit" ref="stock_lot.lot_view_tree"/>
<field name="name">lot_list</field>
</record>
<!-- stock.location -->
<record model="ir.ui.view" id="location_view_form">
<field name="model">stock.location</field>
<field name="inherit" ref="stock.location_view_form"/>
<field name="name">location_form</field>
</record>
<record model="ir.ui.view" id="location_view_list">
<field name="model">stock.location</field>
<field name="inherit" ref="stock.location_view_tree"/>
<field name="name">location_list</field>
</record>
</data>
</tryton>