OpenERP-在父视图中找不到xpath中引用的页面

OpenERP-在父视图中找不到xpath中引用的页面,openerp,odoo,Openerp,Odoo,在从另一个视图继承的xml视图文件中有以下代码: <xpath expr="//notebook/page[@string='Accounting']/group" position="replace"></xpath> 但它给了我一个错误: 在父视图中找不到元素“''” 尽管“会计”选项卡位于父视图中。我做错了什么?谢谢你的帮助 以下是我从中继承的视图: <?xml version="1.0" encoding="utf-8"?> <opener

在从另一个视图继承的xml视图文件中有以下代码:

<xpath expr="//notebook/page[@string='Accounting']/group" position="replace"></xpath>

但它给了我一个错误: 在父视图中找不到元素“''”

尽管“会计”选项卡位于父视图中。我做错了什么?谢谢你的帮助

以下是我从中继承的视图:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record id="product_template_form_view" model="ir.ui.view">
            <field name="name">product.template.form.inherit</field>
            <field name="model">product.template</field>
            <field name="priority">5</field>
            <field name="inherit_id" ref="product.product_template_form_view"/>
            <field name="arch" type="xml">
                <page string="Sales" position="after">
                    <page string="Accounting" groups="account.group_account_invoice">
                        <group>
                            <label for="categ_id" string="Internal Category"/>
                            <div><field name="categ_id" colspan="3" nolabel="1"/></div>
                        </group>
                        <group name="properties">
                            <group>
                                <field name="property_account_income" domain="[('type','=','other')]" groups="account.group_account_user"/>
                                <field name="taxes_id" colspan="2" widget="many2many_tags"/>
                            </group>
                            <group>
                                <field name="property_account_expense" domain="[('type','=','other')]" groups="account.group_account_user"/>
                                <field name="supplier_taxes_id" colspan="2" widget="many2many_tags"/>
                            </group>
                        </group>
                    </page>
                </page>
            </field>
        </record>

        <record id="product_template_search_view" model="ir.ui.view">
            <field name="name">product.template.search</field>
            <field name="model">product.template</field>
            <field name="mode">primary</field>
            <field name="inherit_id" ref="product.product_template_search_view"/>
            <field name="arch" type="xml">
                <field name="product_variant_ids" position="after">
                    <field name="categ_id"/>
                </field>
                <xpath expr="//group[@string='Group by...']" position="inside">
                    <filter string='Category' icon="terp-stock_symbol-selection" domain="[]" context="{'group_by' : 'categ_id'}"/>
                </xpath>
            </field>
        </record>

        <record id="view_category_property_form" model="ir.ui.view">
            <field name="name">product.category.property.form.inherit</field>
            <field name="model">product.category</field>
            <field name="inherit_id" ref="product.product_category_form_view"/>
            <field name="arch" type="xml">
                <data>
                    <xpath expr="//group[@name='parent']" position="inside">
                        <group name="account_property" string="Account Properties" colspan="2">
                            <field name="property_account_income_categ" domain="[('type','&lt;&gt;','view'),('type','&lt;&gt;','consolidation')]"/>
                            <field name="property_account_expense_categ" domain="[('type','&lt;&gt;','view'),('type','&lt;&gt;','consolidation')]"/>
                        </group>
                    </xpath>
                </data>
            </field>
        </record>

    </data>
</openerp>

product.template.form.inherit
产品模板
5.
product.template.search
产品模板
主要的,重要的
product.category.property.form.inherit
产品类别
这是继承了以前的视图并给我错误的视图:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record id="product_config_form_view" model="ir.ui.view">
            <field name="name">product.config.form.view</field>
            <field name="model">product.template</field>
            <field name="type">form</field>
            <field name="inherit_id" ref="product.product_template_only_form_view" />   
            <field name="arch" type="xml">
                <label for="name" position="replace">
                    <label for="name" invisible="1"/>
                </label>
                <field name="name" position="replace">                      

                    <div style="font-size:10pt;">
                        <label for="class_id" string="Item Class" />
                    </div>
                    <div style="font-size:10pt;">
                        <field name="class_id" colspan="3" nolabel="1" on_change="onchange_class_id(class_id)"
                        /> </div> 
                    <div style="font-size:10pt;">
                        <label for="name" string="Item Description"/>
                    </div>
                    <div style="font-size:10pt;" >
                        <field name="name" colspan="3" nolabel="1"/>
                    </div>

                </field>
                <field name="default_code" position="replace" >
                    <field name="default_code" string="Item Number" /> 
                </field> 

                <xpath expr="//notebook/page[@string='Accounting']/group" position="replace">
                </xpath>
            </field>        
        </record>

        <record id="product_config_tree_view" model="ir.ui.view">
            <field name="name">product.config.tree.view</field>
            <field name="model">product.class</field>
            <field name="type">tree</field>
            <field name="arch" type="xml">
                <tree string="Product">
                    <field name="default_code" string="Class ID" colspan="3" nolabel="1" />                         
                    <field name="name" string="Class Description" colspan="3" nolabel="1"/>                     
                </tree>
            </field>          
        </record>    

        <record id="class_search_view" model="ir.ui.view">
            <field name="name">class.search.view</field>
            <field name="model">product.class</field>
            <field name="arch" type="xml">
                <search string="Class">
                    <field name="name" string="Class Description" filter_domain="['|',('default_code','ilike',self),
                    ('name','ilike',self)]" />                                
                </search>
            </field>
        </record>

    </data>
</openerp>

product.config.form.view
产品模板
形式
product.config.tree.view
产品类别
树
class.search.view
产品类别

您可以使用
//notebook
启动xpath表达式。 因此,xpath会选择所有
notebook
元素,而不管它们出现在文档中的什么位置。 但我没有看到任何包含笔记本的xml标记

这句话:

<xpath expr="//page[@string='Accounting']/group" position="replace"></xpath>

选择以下项下的所有编组元素:

<page string="Accounting" groups="account.group_account_invoice">

问题在于继承id的视图错误。感谢您的帮助。