使用特定用户创建的类别将 res.user 扩展到 link

Extend the res.user to link with categories created by the specific user

使用继承的视图扩展 pos.category 表单,如何使用 xpath 在表单的第一部分附加智能按钮

 <record id="view_pos_category_inherited_form" model="ir.ui.view">
    <field name="name">view.pos_category.inherited.form</field>
    <field name="model">pos.category</field>
     <field name="inherit_id" ref="point_of_sale.product_pos_category_form_view" />
    <field name="arch" type="xml">

    <xpath expr="//form" position="inside">
            <sheet>
                <header>
                        <button class="oe_stat_button" name="" icon="fa-th-list" type="action" context="{'search_default_create_uid': uid}">
                        <div class="o_field_widget o_stat_info">
                            <span class="o_stat_value"><field name="user_categories_count"/></span>
                            <span class="o_stat_text"> Categories</span>
                        </div>      
                    </button>
                </header>
            </sheet>

    </xpath>


    </field>


</record>

不要在 <header> 标签之前添加 <sheet> 标签。只需像 hit

这样的代码
<xpath>
<header></header>
<sheet></sheet>
</xpath>

您的 xpath 是正确的,刚刚完成此更改,它将起作用