Hierarchy Tree Native View (Chart of Accounts Hierarchy)
by CodersFort http://www.codersfort.com$ 42.49
Required Apps |
Invoicing (account)
|
Lines of code | 806 |
Technical Name |
hierarchy_view |
License | LGPL-3 |
Website | http://www.codersfort.com |
Required Apps |
Invoicing (account)
|
Lines of code | 806 |
Technical Name |
hierarchy_view |
License | LGPL-3 |
Website | http://www.codersfort.com |
Hierarchy Tree View (Native Hierarchy Tree View)
- This module will helps you to Create Hierarchy Tree View Using Parent ID using from any Module.
Features
- Create Hierarchy Tree View.
- Show a Simplify Form View for Selected Tree Node.
- Edit form view.
- support field, outer group, inner group and all html tag and style.
- Don't support show one2many field now.
Installation
- Copy hierarchy_view module to addons folder
- Install the module normally like other modules
Hierarchy Tree View
Chart of Account Hierarchy / Chart of Accounts Hierarchy
parent_id should be available from Accounts Model.

Technical Configuration
1. Install the Module.
2. Create a new View Type for Hierarchy Tree View.
3. Ref. the below code for Configre the View
4. Selected module should have Parent ID
5. You have to Map Display Name (name) and Parent ID (parent_name) on View Architecture
6. Mini Form View also you can configure (Does not Support one2many now)
<record id="account_account_hierarchy_view" model="ir.ui.view">
<field name="name">account.account.form</field>
<field name="model">account.account</field>
<field name="arch" type="xml">
<hierarchy_view name="name" parent_name="parent_id">
<div>
<div class="oe_title" style="display: inline-block;">
<label for="name" class="oe_edit_only"/>
<h1>
<field name="name"/>
</h1>
<field name="company_id"/>
</div>
</div>
<group>
<group string="Information">
<field name="code"/>
<field name="parent_id"/>
</group>
<group string="Information">
<field name="company_id"/>
<field name="user_type_id"/>
</group>
</group>
</hierarchy_view>
</field>
</record>
<record id="account.action_account_form" model="ir.actions.act_window">
<field name="view_mode">tree,kanban,form,hierarchy_view</field>
</record>

When you open the Hierarchy Tree View below Features will be available.
1. Tree View
2. Mini Form View
3. Tree Expand and Collapse Buttons

Chart of Accounts Hierarchy
This module is attached with Accounts Parent ID configuration
1. Enable Show Full Accounting Features for User
2. Open Invoice -> Chart of Accounts -> Set Up
3. Set Parent Name for each Account

4. Open Hierarchy View from Hierarchy Tree View Icon

5. Hierarchy Tree View

Help and Support
Hierarchy Tree View
- This module will helps you to Create Hierarchy Tree View Using Parent ID using from any Module
Features
- Create Hierarchy Tree View.
- Show a Simplify Form View for Selected Tree Node.
- Edit form view.
- support field, outer group, inner group and all html tag and style.
- Don't support show one2many field now.
Installation
- Copy hierarchy_view module to addons folder
- Install the module normally like other modules.
Please log in to comment on this module