How to Fix XML SyntaxError in Odoo 16 | XMLSyntaxError: Opening and ending tag mismatch – CBMS Odoo ERP

In this video, we delve into the common XML syntax errors that developers may encounter while working with Odoo 16, a powerful open-source ERP platform. From misplaced tags to incorrect attributes, we explore the nuances of XML structure within Odoo and identify potential pitfalls. #odooxml #odooerrors #xml Additionally, we provide step-by-step guidance on debugging techniques […]

How to Create Dashboard in Odoo 15 | How to Create Odoo 15 Dashboard Using Python and XML Files – CBMS Odoo ERP

This Video discusses Reporting dashboard in Odoo 15. It helps to create a dashboard using python and XML files, which comprises a graph, tree, pivot, and calendar view. #odooxml Video Contents ————————- 0:00 Introduction 0:44 Menu Item for dashboard 2:01 Menu action 4:47 Board view 8:20 Dashboard View 9:01 Graph View 12:38 Adding graph view […]

How to Show Different Form Views for Many2one Fields With Same Relation | Odoo XML – CBMS Odoo ERP

In this video, we are discussing How to show different form views for a many2one field with the same relation in odoo using the form_view_ref in XML as context and its use cases. #odooxml #odootechnicalvideos #odoodevelopmentvideos Different view for same many2one field Usages of form_view_ref in odoo #Show #Form #Views #Many2one #Fields #Relation #Odoo #XML

How to use search_count method in Odoo | XML RPC | Odoo External API – CBMS Odoo ERP

Rather than retrieve a possibly gigantic list of records and count them, search_count() can be used to retrieve only the number of records matching the query. It takes the same domain filter as search() and no other parameter. url = ” db = ‘test_local_enterprise_db’ username = ’14’ password = ’14’ import xmlrpc.client common = xmlrpc.client.ServerProxy(‘{}/xmlrpc/2/common’.format(url)) […]