~vauxoo/addons-vauxoo/7.0-changes-in-openerp-alan

« back to all changes in this revision

Viewing changes to mrp_production_filter/mrp_view.xml

[V7-MIGRATION]

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="utf-8"?>
 
1
<?xml version='1.0' encoding='utf-8'?>
2
2
<openerp>
3
3
    <data>
4
4
        <record model="ir.ui.view" id="view_state_mrp_inherit_filter">
6
6
            <field name="model">mrp.production</field>
7
7
            <field name="inherit_id" ref="mrp.view_mrp_production_filter"/>
8
8
            <field name="arch" type="xml">
9
 
                <xpath expr="/search/filter[@string='Late']" position="after">
 
9
                <xpath expr="//filter[@string='Late']" position="after">
10
10
                    <filter icon="terp-document-new" string="Done" domain="[('state','=','done')]" name="done"/>
11
11
                    <filter icon="terp-document-new" string="Active" domain="[('state','&lt;&gt;','done'),('state','&lt;&gt;','cancel')]" name="active"/>
12
12
                </xpath>