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 […]
Odoo is a very flexible ERP system when compared to the fields and their views. We can easily add new fields into a model and display them into new views or existing views. In this video, we’ll be discussing how we can add a new field into an existing form view. #odoocustomfield #odoofields #odoo14 #Add […]
In this video, we will discuss how to inherit and add a new item into an existing selection field in odoo 14 development. #odoo #odoo14 #odoodevelopment #odootutorials #cybrosys #cybrosystutorials #Inherit #Selection #Field #Odoo
In odoo, the read-only field is stored in the database only when adding the attribute of force_save. In this video, it explains the uses of force_save in Odoo. #odoovideos #odootutorials #odoodevelopmentvideos #odootechnicalvideos #force_save #Odoo #Read #Field #force_save #attribute #Odoo
Odoo has a flexible way to define menu, sub-menu, and actions. The main attraction is that one can create a menu and sub-menu from code as well as UI, which makes Odoo more user-friendly. #odoovidoes A user can directly create a menu and sub-menu from the UI. In this blog, we are going to discuss […]
In Odoo, we can schedule activities or planning of tasks based on a model.In some cases, we need to plan activities based on each record or data.Here ,in this video it describes how to schedule an activity within each form view in Odoo. How to schedule activity How to schedule activity in Odoo 14 Schedule […]
These are the flags that are used for updating Odoo Many2many field. (0, 0, { values }) link to a new record that needs to be created with the given values dictionary (1, ID, { values }) update the linked record with id = ID (write values on it) (2, ID) remove and delete the […]
In this video we will discuss how to use sql constrains in odoo. SQL constraints are defined through the model attribute _sql_constraints. The latter is assigned to a list of triples of strings (name, sql_definition, message), where name is a valid SQL constraint name, sql_definition is a table_constraint expression, and message is the error message. […]
These are the flags that are used for updating Odoo One2many field. (0, 0, { values }) link to a new record that needs to be created with the given values dictionary (1, ID, { values }) update the linked record with id = ID (write values on it) (2, ID) remove and delete the […]