Odoo helps you to set validations to recordsets with the help of python and model constraints. Mainly there are two ways in which constraints can be set to variants in Odoo. They are python and SQL constraints. #odoo15developmentvideos Basically python constraints are set in odoo using the class decorator api.constrains() which takes in the field […]
Odoo sh is a cloud platform used for loading the Odoo instance. In order for Odoo to function in it, it requires the support of various python packages. #odoosh #installodoo #odooinstance #odoo #odoo14 #odootechnical #odoo14technical In this video, we’ll be discussing on how we can install additional python packages into our Odoo sh instance. #install […]
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 […]
Odoo Python Constraints ( api.constraints ) helps to validate specific fields given as it’s parameters. It will return a message if the data is invalid.api.constraints trigger a python method where the validation conditions are checked. Get the module from our repository: In this videos, you are going to learn odoo python constraints Related videos: Computed […]