_order attribute in Odoo 16 | Order Attribute In Odoo Models | How to Sort Order for Records in Odoo – CBMS Odoo ERP

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

How to Count Records Using search_count in Odoo 16 | search_count() method in Odoo 16 – CBMS Odoo ERP

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: ————————————— […]

How to Add Colour Kanban Records in Odoo 16 Notebook | Odoo 16 Development Tutorials – CBMS Odoo ERP

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 […]

How to Do Some Action After the Record Edited | Odoo 15 Technical Videos | Editing Existing Records – CBMS Odoo ERP

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

How to Count Records Using Search Count in Odoo 15 | Odoo 15 Development Tutorials – CBMS Odoo ERP

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 […]

How to Make Sure One2many Records Are Deleted When the Parent Record Deleted | ondelete =”cascade” – CBMS Odoo ERP

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 […]