27 lines
769 B
XML
27 lines
769 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright (C) 2015 Akretion (http://www.akretion.com/)
|
|
@author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
|
|
<openerp>
|
|
<data>
|
|
|
|
|
|
<record id="view_picking_internal_search_inherit" model="ir.ui.view">
|
|
<field name="name">sale_stock_usability.picking.search</field>
|
|
<field name="model">stock.picking</field>
|
|
<field name="inherit_id" ref="sale_stock.view_picking_internal_search_inherit" />
|
|
<field name="arch" type="xml">
|
|
<filter name="to_invoice" position="attributes">
|
|
<attribute name="domain">[('invoice_state', '=', '2binvoiced'), ('state', '=', 'done')]</attribute>
|
|
</filter>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
</data>
|
|
</openerp>
|