trytond-stock_shipment_review/shipment.xml

32 lines
1.2 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.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="inherit"
ref="stock.shipment_out_view_form"/>
<field name="name">shipment_out_form</field>
</record>
<record model="ir.ui.view" id="shipment_out_view_tree">
<field name="model">stock.shipment.out</field>
<field name="type" eval="None"/>
<field name="inherit"
ref="stock.shipment_out_view_tree"/>
<field name="name">shipment_out_tree</field>
</record>
<record model="ir.action.act_window.domain" id="act_shipment_out_form_domain_to_review">
<field name="name">To Review</field>
<field name="sequence" eval="9999"/>
<field name="domain"
eval="[('review', '=', True)]"
pyson="1"/>
<field name="act_window" ref="stock.act_shipment_out_form"/>
</record>
</data>
</tryton>