In some cases, based on conditions or values we want to show alert messages to users to show that. In odoo, we can use alert messages in the view xml based on the conditions. This video shows how to show such alert messages on form views. #odoocourse #odoodevelopment #odoo #odoo14 #odootechnical #odoo14technical #Set #Alert #Messages […]
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 […]
This video explains how to add a button in the header of any list view easily in odoo V14. #odoodevelopment #odoodevelopmenttutorials #odootutorials #odoo #odoo14 #odootechnical #odoo14technical #easily #Add #Button #List #View #Header #Odoo #V14 #Add #Button #Odoo
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 […]
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)) […]
Records can be updated using write(), it takes a list of records to update and mapping of updated fields to values similar to create(). #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, {}) […]
Odoo requires users of the API to be authenticated before they can query most data. The xmlrpc/2/common endpoint provides meta-calls that don’t require authentication, such as the authentication itself or fetching version information. To verify if the connection information is correct before trying to authenticate, the simplest call is to ask for the server’s version. […]
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 […]