i am looking for account financial report hierarchy tree view , but i see the menu does not exist anymore in odoo 11, i tried to recreate with odoo 9 code, but only show the records as form view , exist any solution for that?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Boekhouding
- Voorraad
- PoS
- Project
- MRP
Deze vraag is gerapporteerd
2
Antwoorden
8846
Weergaven
Hi, this is my tree view and window action code for odoo11, but this only show me the form view
<record id="view_account_report_tree_hierarchy2" model="ir.ui.view">
<field name="name">account.report.hierarchy</field>
<field name="model">account.financial.report</field>
<field name="field_parent">children_ids</field>
<field name="arch" type="xml">
<tree>
<field name="name"/>
<field name="type"/>
<field name="parent_id" invisible="1"/>
<field name="account_report_id"/>
</tree>
</field>
</record>
<record id="action_account_report_tree_hierarchy" model="ir.actions.act_window">
<field name="name">Hierarchy accounts</field>
<field name="res_model">account.financial.report</field>
<field name="view_type">tree</field>
<field name="view_id" ref="view_account_report_tree_hierarchy2"/>
<field name="domain">[('parent_id','=',False)]</field>
</record>
thanks for all
2018-07-06 23:39 GMT-05:00 Emipro Technologies Pvt. Ltd. <info@emiprotechnologies.com>:
Saludos cordiales,
Ing. Adnier Roselló Carrazana
arosello2013@gmail.com
Tel: 0979104826
Hello,
Hierarchy tree view removed in Odoo v11.
For more reference, you can read here, https://github.com/odoo/odoo/
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
Aanmelden