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 […]
Promotional programs can be used as a marketing tool where you can target the specific audience and can implement the loyalty program. This video explains how these promotional programs are created and learn how to encourage potential customers to use promo codes on your eCommerce and increase your sales. #odoo #odoo14 #odoowebsite #Create #Share #Promotional […]
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’, […]
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)) […]
The Pipeline Status Bar is simple to implement in Odoo and can be used as part of the workflow. Start by activating Odoo Studio for a Form View Then click on Add a pipeline status bar and add statuses according to your requirement and confirm Odoo Studio also makes it easy to add filters to […]
We can use Odoo 14 Studio to add many different field types, and the process is basically the same for all of them.In this video, let’s see how different fields can be added to different views and customize it using the studio. #odoostudio #odoo14 #odoo ►► Visit our company website: ►► Our Odoo services Odoo […]
The key objective behind this Odoo Technical Training is to literate the Odoo developers and beginners who are interested in Odoo development. The training envisions sharing how we can create a customized XLSX report in odoo. #odoowebinar #odoo14 #odoo The training will cover all the basic Odoo module development essentials When it comes to the […]
To customize the report, select the report tab in the studio tool. One can create new reports or modify existing reports. When creating a new report, it will ask the type of report: External, Internal, Blank. Choose the required one based on whether the report contains the header and footer. Thus the report template will […]