How to Show Sample Data in Tree and Kanban View in Odoo 17
CelineGeorge1
740 views
7 slides
Jul 03, 2024
Slide 1 of 7
1
2
3
4
5
6
7
About This Presentation
In Odoo 17, sample data serves as a valuable resource for users seeking to familiarize themselves with the functionalities and capabilities of the software prior to integrating their own information. In this slide we are going to discuss about how to show sample data to a tree view and a kanban view...
In Odoo 17, sample data serves as a valuable resource for users seeking to familiarize themselves with the functionalities and capabilities of the software prior to integrating their own information. In this slide we are going to discuss about how to show sample data to a tree view and a kanban view.
Size: 369.9 KB
Language: en
Added: Jul 03, 2024
Slides: 7 pages
Slide Content
How to Show Sample Data in Tree and Kanban View in Odoo 17 Enterprise
Introduction Enterpr ise In Odoo 17, sample data serves as a valuable resource for users seeking to familiarize themselves with the functionalities and capabilities of the software prior to integrating their own information. In this slide we are going to discuss about how to show sample data to a tree view and a kanban view.
Enterprise Create a new model Create a new model student. r ecord and add some fields to it Class StudentRecord(models.Model): _inherit = ‘student.record’ name = fields.Char(‘Student’) age = fields.Float(‘Age’)
Enterprise Create tree view for the model Define a tree view for the corresponding model <record id="rental_order_contract_view_tree" model="ir.ui.view"> <field name="name">student.record.view.tree</field> <field name="model">student.record</field> <field name="arch" type="xml"> <tree sample=”1”> <field name="reference_no"/> <field name="partner_id"/> </tree> </field> </record>
Enterprise Adding sample=”1” while defining a view to loading sample data to the corresponding view type. On the creation of new database it will load a sample data with required fields on the corresponding views that we have given.
For More Info. Check our company website for related blogs and Odoo book. Check our YouTube channel for functional and technical videos in Odoo. Enterprise www.cybrosys.com