The Odoo website module will add up to the aspect of website building as well as website management operations. We know creating a website menu and website page is not a difficult task in Odoo. #odoowebsite #odootutorial #odoodevelopment #odoo #odoo14 #odootechnical #odoo14technical Users know straightway to create a menu from the front end of odoo. […]
Sequential fields in Odoo are also called auto-increment fields and an auto-increment number is generated every time a new record is generated. #newsequenceinodoo #odootutorial #odoodevelopment #odoo #odoo14 #odootechnical #odoo14technical If we need to add a sequence field for naming to our custom model, we can do it easily by incrementing the name field. We can […]
In this video, we’ll be discussing how to use the Odoo website module to load data and use the default layout in Odoo. #odoowebsite #odoosupport #odoodevelopment #odoo #odoo14 #odootechnical #odoo14technical Odoo is a fully loaded ERP system that supports the mechanism for handling websites. Odoo has a dedicated module for handling such uses. Users can […]
From version 14, Odoo has introduced a new interactive way to display their models. They provide the opportunity to display dummy data if no records exist within the model while accessing their tree, kanban, graph, or pivot view. These data appear as blurred views in their respective view forms and this gives the user a […]
While we previously used fields_get() to query a model and have been using an arbitrary model from the start, Odoo stores most model metadata inside a few meta-models which allow both querying the system and altering models and fields (with some limitations) on the flyover XML-RPC. #odooexternalapi #xmlrpc #odooxmlrpc #Introspection #Inspection #Odoo #External #API #Odoo […]
Records can be deleted in bulk by providing their ids to unlink(). #odooexternalapi #xmlrpc #odooxmlrpc url = ” db = ‘test_local_enterprise_db’ username = ’14’ password = ’14’ import xmlrpc.client common = xmlrpc.client.ServerProxy(‘{}/xmlrpc/2/common’.format(url)) version = common.version() print(“version”, version) uid = common.authenticate(db, username, password, {}) print(“uid = “,uid) models = xmlrpc.client.ServerProxy(‘{}/xmlrpc/2/object’.format(url)) delete_rec = models.execute_kw(db, uid, password, ‘res.partner’, […]
To install a module in Odoo, we usually go to the app menu and install it from there. There is also the possibility for installing or uninstalling a module directly from the settings using a boolean field. In this video, we’ll be discussing how we can execute that. #odoo #odoo14 #install #module #settings #Odoo #install […]
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)) […]