trytond-stock_last_price/stock.xml
2018-06-01 10:46:46 +02:00

32 lines
1.3 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>
<!-- Stock move -->
<record model="ir.ui.view" id="stock_move_view_form">
<field name="model">stock.move</field>
<field name="type" eval="None"/>
<field name="name">stock_move_form</field>
<field name="inherit" ref="stock.move_view_form"/>
</record>
<record model="ir.ui.view" id="stock_move_price_view_tree">
<field name="model">stock.move</field>
<field name="type">tree</field>
<field name="name">stock_move_price_tree</field>
</record>
<record model="ir.ui.view" id="stock_move_price_view_form">
<field name="model">stock.move</field>
<field name="type">form</field>
<field name="name">stock_move_price_form</field>
</record>
<!-- Shipment out -->
<record model="ir.ui.view" id="shipment_out_view_form">
<field name="model">stock.shipment.out</field>
<field name="type" eval="None"/>
<field name="name">shipment_out_form</field>
<field name="inherit" ref="stock.shipment_out_view_form"/>
</record>
</data>
</tryton>