In this video, we are discussing about how to add a chatter to a form view in odoo 14. Chatters can be used for recording the changes which are made in that form view otherwise chatter keeps the history of the logs which includes the user who made the changes along with the time information. […]
In this video, we are discussing about how to create a map view in odoo14 enterprise. #odoomapview #odoo14 #odooenterprise #odooviewtypes Map view creation in odoo How to create map view #Create #Odoo #Map #View #Odoo #Odoo #Enterprise #Edition
In this video, we are discussing the difference between @api.onchange and @api.depends in odoo14 #api #decoratorsinodoo #odoo #odoo14 #odootutorials Difference between onchange and depends How to use @api.onchange in odoo How to use @api.depends in odoo #Main #Difference #api.onchange #api.depends #Odoo #Odoo #Custom #Module
In this video, we will discuss how to create a Cohort view in Odoo 14 and its use cases. 👉 Reference: #odoo14 #odootechnicalvideos #odoodevelopementvideos #Create #Cohort #View #Odoo #Defining #Cohort #View
In this video, we’ll discuss how we can change the related field to a normal field. #odoo14 #odoofields Related fields in Odoo are used to show the value to a field from another model field. By default, the related field values are not stored in the database. To store such values we have to add […]
In this video, we’ll be discussing how we can add chatter into our model’s form view. #odoo14 #odoodevelopment Chatter is a tool used for communication inside the form view. Basically, the chatter helps with internal communication. For instance, when a state-changing happens, say one of the sale orders gets moved from quotation state to sale […]
In this video, we will are discussing how to use the name get function in Odoo 14. #name_getfunction #odoo14 #name_get #function #Odoo
Buttons are very handy tools in Odoo which help to perform different kinds of actions and other purposes. The form buttons are those buttons that are shown at the top of the form and are very useful in performing tasks for the particular record. In this video we’ll be discussing in short how we can […]
If we add a new field in the backend and want them to be displayed in POS, we can use the load_fields method in the ‘PosModel’ initialization function. eg:- var models = require(‘point_of_sale.models’); models.load_fields(‘model’, ‘field_name’); In order to upload the new model to POS, we use load_models(models, options). Load the odoo model when the point […]