Odoo Technical Training 2020 Day-1 The key objective behind Odoo Technical Training is to literate the Odoo developers, Technical Consultants, and beginners who are interested in Odoo development. The training envisions in sharing how we can customize existing Odoo functionalities and develop our own new features. The training will cover all the basic Odoo module […]
Odoo Rental Module is a new application introduced by Odoo from Odoo 13 version. Odoo rental management system eases the obtaining of products on rents for a certain period of time. Via Odoo rental the businesses can manage their resources and orders efficiently. Under Odoo Rental application it comes separate space for managing rental products, […]
In this video, we are going to discuss how we can add chatter to our custom modules. What is the need of a chatter? 1. We can send Mails 2. We can add log related to the particular record 3. We can add followers to the record 4. Keep track of field value changes #odoodevelopment […]
Security – Groups and access rights in odoo Security access in Odoo is configured through security groups: permissions are given to groups and then groups are assigned to users. Odoo has a lot of groups. Once you know about groups, you can select groups from the list of groups. Security is a major concern when […]
A search view defines the search options that will be available in the views. The Search view defines the ‘fields’ to be searched when a user types in the search box. We can also set predefined filters as well as data Grouping options with the help of the search view.The root element of search view […]
Odoo Tree Views can take supplementary attributes to further customize their behavior: decoration-{$name} allow changing the style of a row’s text based on the corresponding record’s attributes. In this video, we will discuss how you can add colors to the tree view based on conditions. Get the module from our repository: As in the Odoo […]
Odoo api.onchange decorator is used to invoke a method when a field’s value changed. It can be used to validate the data or to trigger an action. Get the module from our repository: This video explains about the onchange mechanism: @api.onchange in Odoo Related videos: Computed fields and @api.depends in Odoo 13: View Inheritance in […]