0
votes

I try to extend the view with external id stock.view_picking_form as follows :

<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
        <record model="ir.ui.view" id="cap_stock.stock_picking_form">
            <field name="name">cap_stock.stock_picking_form</field>
            <field name="model">stock.picking</field>
            <field name="inherit_id" ref="stock.view_picking_form" />
            <field name="arch" type="xml">

                <xpath expr="//button[@name='action_assign']"  position="replace">
                    <button name="action_assign" invisible="1"/>
                </xpath>

        </record>


</data>
</openerp>

But I get all the time

ParseError: "ValidateError
Field(s) `arch` failed against a constraint: Invalid view definition

Error details:
Model not found: stock.picking

Error context:
View `cap_stock.stock_picking_form`
[view_id: 996, xml_id: n/a, model: stock.picking, parent_id: 722]" while parsing /var/www/cbl_openerp/openerp/cap_addons/cap_stock/data.xml:4, near

What am I missing ?

Why is the model stock.picking not recognized ?

1

1 Answers

1
votes

I did not add 'stock' in my depends __openerp__.py file.

It is possible to check this by looking at the file or executing this query :

select * from ir_model where model='stock.picking'
select * from stock_picking