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 […]
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 […]
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
Whenever we update a module in Odoo, all its XML file gets loaded and updated to the latest version of code available. So we provide a no update attribute with the data tag in our xml if we want to avoid updating to any datas or code within our xml file (say in the case […]
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)) […]
How to delete record from xml files in odoo As you may know, we can delete records from the UI ( using the delete button in the action in the record) or from the python function. Suppose you need to delete records from the database or install some custom modules, so in that case, you […]