Skip to Content
Menu
This question has been flagged
1 Reply
6506 Views

hi,

In the product module, the product category is shown by as like "all products/saleable".how its shown like that. In my own module exists a similar situation. But it shows only the child name. It doesn't include the parent name as in product. how its possible and how the same to be included in tree view?

Avatar
Discard
Author

Hello Nishant Kashyap,

if you know pls post it...

Best Answer

I did the same for the Departments in HR Modules. I hope this piece of code will help you:

<record id="department_category_tree_view" model="ir.ui.view">
            <field name="name">department.category.tree</field>
            <field name="model">hr.department</field>
            <field name="field_parent">child_ids</field>#use this to show their childs
            <field name="arch" type="xml">
                <tree string="Department Categories">
                    <field name="name" />
                </tree>
            </field>
        </record>
Avatar
Discard