trytond-stock_unit_load/shipment.xml

26 lines
1.1 KiB
XML
Raw Normal View History

2015-10-20 19:27:57 +02:00
<?xml version="1.0"?>
<!-- The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<!-- Shipment out -->
<record model="ir.ui.view" id="shipment_out_view_form">
<field name="model">stock.shipment.out</field>
<field name="name">shipment_out_form</field>
<field name="inherit" ref="stock.shipment_out_view_form"/>
</record>
2016-02-29 14:23:57 +01:00
<!-- form relate -->
<record model="ir.action.act_window" id="act_unit_loads_shipment_out">
<field name="name">Shipment Out</field>
<field name="res_model">stock.shipment.out</field>
<field name="domain" eval="[('unit_loads', 'in', Eval('active_ids'))]" pyson="1"/>
</record>
<record model="ir.action.keyword" id="act_unit_loads_shipment_out_keyword1">
<field name="keyword">form_relate</field>
<field name="model">stock.unit_load,-1</field>
<field name="action" ref="act_unit_loads_shipment_out"/>
</record>
2015-10-20 19:27:57 +02:00
</data>
</tryton>