In this video, it describes about @api.onchange method on the client interface #onchangemethod @api.onchange decorator is used when the field’s value is changed. It can be used to validate data or trigger action. This method can be invoked on pseudo records that contain values of the form. #odoo15developmenttutorials Video Contents: #odoo15videos 0:00 Introduction 1:13 @api.onchange […]
This Video explains about building a module in Odoo 15 using the scaffold method. Where scaffold method is a single line command for making a module for a specific purpose. Scaffolding is available via the Odoo-bin scaffold subcommand. How to create a new module using a command-line interface in Odoo. How to create a new […]
If a method has more than one super method and doesn’t want to execute any functionalities of those super methods, then we can override all super methods of that method. #odoo14 #overridemethods #odootechnicalvideos #Override #Super #Method #Odoo #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)) […]
Views are defined how records should be displayed to end-users. They are specified in XML which means that they can be edited independently from the models that they represent. They are flexible and allow a high level of customization of the screens that they control. There exist various types of views. Each of them represents […]
In this video, we will be discussing how we can override a method in Odoo 14 and the usage of the super method. By overriding a method we can change the implementation of that method, which is redefining that method. By using the super method we can override a method to change its default behavior […]
Payu Latam payment acquirer. In Odoo 13 they have introduced the PayU Latam the popular payment acquirer in Latin America for online payment. This video explains how to set up payulatam for online payment. #odoofeatures #odoocommunity #odoo More videos Subscribe to our YouTube channel. Visit our company website: Connect with us: Facebook: twitter: LinkedIn: Pinterest: […]