What Is the Main Difference Between @api.onchange and @api.depends in Odoo 14 | Odoo Custom Module – CBMS Odoo ERP

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

How to Load Field to PoS in Odoo 14 – CBMS Odoo ERP

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 […]