コンテンツへスキップ
メニュー
この質問にフラグが付けられました
5 返信
7028 ビュー

What the cause and how to fix this error :

"Canot be located in parent view"


[Update]

This is the code, I can't add new tab after Accounting :

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>

<record model="ir.ui.view" id="product_form_view">
    <field name="name">product</field>
    <field name="model">product.product</field>
    <field name="type">form</field>
    <field name="inherit_id" ref="product.product_normal_form_view"/>
    <field name="arch" type="xml">
    
        <xpath expr="//page[@string='Accounting']" position="after">
            <page string="KPB" col="1">
                <group col="4">
                    <field name="color"/>
                </group>
            </page>
        </xpath>
        
    </field>
</record>

</data>
</openerp>

アバター
破棄

Provide more information. No-one has a glass orb around here, so a single sentence does not help anyone to solve your problem.

最善の回答

You probably need to add, in your module, in __openerp__.py

'depends': [ 'product' ],

アバター
破棄
著作者

I was added it before

最善の回答

Since the Accounting page is added in ACCOUNT module, but you tried to inherit PRODUCT module to add your form

<record model="ir.ui.view" id="product_form_view">
    <field name="name">product</field>
    <field name="model">product.product</field>
    <field name="type">form</field>
    <field name="inherit_id" ref="account.product_normal_form_view"/>
    <field name="arch" type="xml">
    
        <xpath expr="//page[@string='Accounting']" position="after">
            <page string="KPB" col="1">
                <group col="4">
                    <field name="color"/>
                </group>
            </page>
        </xpath>

    </field>
</record>

アバター
破棄
著作者

ok thanks, I will try

関連投稿 返信 ビュー 活動
2
10月 24
7689
2
1月 24
15410
0
10月 16
5154
7
4月 15
7248
3
12月 23
26153