Learn everything you need to grow your business with Odoo, the best open-source management software to run a company, at In this video, learn how you can add simple fields to a view with Odoo Studio. Need more information about Odoo apps? Discover Odoo, schedule a demo, or start your own Odoo revolution for free […]
Learn everything you need to grow your business with Odoo, the best open-source management software to run a company, at In this video, learn about Studio’s basic concepts. Need more information about Odoo apps? Discover Odoo, schedule a demo, or start your own Odoo revolution for free (no credit card required), at #Studio #Basics #Odoo […]
The _order attribute in Odoo defines the default sorting order for records when retrieved from the database. #odoo16 #odoodevelopment #odootutorials Connect With Us: ————————————— ➡️ Website: ➡️ Email: info@cybrosys.com ➡️ Twitter: ➡️ LinkedIn: ➡️ Facebook: ➡️ Instagram: ➡️ Pinterest: #_order #attribute #Odoo #Order #Attribute #Odoo #Models #Sort #Order #Records #Odoo
The search_count() method returns the number of records matching the search domain. This method accepts a search domain as its argument.Syntax: Model.search_count(args)? int #odoo16 #odootutorials Eg: self.search_count([(‘product_tmpl_id’, ‘=’, record.product_tmpl_id.id),(‘active’, ‘=’, True), ])This returns the set of records satisfying the domain conditions given as the arguments inside the model. #odoodevelopment #odoo #odoobeginers Connect With Us: ————————————— […]
In this video, we’ll talk about how to add colour kanban records to an Odoo notebook. #odoo16developmentvideos. On Odoo, there are many views accessible. The terms list, form, graph, and pivot are instances. An intriguing viewpoint is Kanban. #odoo16tutorials View data are shown as cards in kanban. Records can be regrouped in this view to […]
In this video, we discuss how to perform some action after updating or making changes to an existing record #odoodevelopmentvideos #odootutorials #odootechnicalvideos Connect With Us: ———————— ➡️Website: ➡️Email : info@cybrosys.com ➡️Twitter: ➡️LinkedIn: ➡️Facebook: ➡️Instagram: ➡️Pinterest: #Action #Record #Edited #Odoo #Technical #Videos #Editing #Existing #Records
The search_count() method returns the number of records matching the search domain. This method accepts a search domain as its arguments. #odootechnicaltutorial Video Contents ————————- 00:15 Introduction 00:16 search_count function use case 00:36 using search_count function to show the number of records Syntax: Model.search_count(args) ? int Eg: self.search_count([(‘product_tmpl_id’, ‘=’, record.product_tmpl_id.id),(‘active’, ‘=’, True), ]) This returns […]
In this video we are discussing How to browse and search records from a model in odoo 15. Video Contents 00:06 Introduction 00:40 Searching and browsing a record The browse() method is used to return a set of records for the IDs passed as the parameter in the current working model. This method accepts a […]
This video discusses how to make sure one2many records are deleted when parent records are deleted. #odoodevelopmentvideos Video Contents ————————- 00:37 Introduction 00:38 Example 01:03 ondelete = ‘cascade’ 02:11 Delete parent record This can be done using ondelete =”cascade” attribute. We can use ondelete = ‘cascade’, which is a referential action for a foreign key […]