In this video, it explains about how to build a custom module and basic python files, models, views, and security inside a module in Odoo 16 #odoo16developmentvideos Odoo is basically a web-based open source framework. which act as a solution for all business requirements. #odoo16videos Odoo modules are a set of business logic that helps […]
For Some Customisations in Odoo, we are using extra python packages for its working . Also in the odoo requirements, we can see many python packages such as Babel, pydot, lxml, etc… This video, explains how to install python packages from the pycharm which helps for our odoo development. Video Contents 0:00-0:51 Introduction 0:52-2:49 Python […]
In Odoo an editable tree view has much more important in creating a new record or editing an existing record. #odoo15tutorials By enabling the editable tree view a user can easily create or edit the records. #odoo15technicalvideos To convert a tree view into an editable tree view we use the editable=’bottom’ or editable=’top’ attribute. It […]
This video helps to understand an overview of Teams and Quality Checks in the Odoo 15 Quality module #odoo15videos Video Chapters ————————- 00:00 Introduction 00:37 Quality Control 01:12 Quality Checks 02:11 Create quality checks 03:57 Quality Teams 04:21 Create team One of the vital parts of a business is to check the quality of products […]
In this video, you can gain detailed knowledge on Odoo 15 Recruitment module works in recruiting a candidate by posting the required on the company website. #odoo15recruitment Video Chapters ————————- 00:00 Introduction 00:39 Create a Job Position 03:19 Configure – Job Position 04:02 Go to the Website 05:38 All Application 06:27 Create Application What makes […]
This video is about how to add a new field to an existing model. A new field can be added to an existing model by inheriting the model. #odoodevelopmentvideos A view for this field can be given by inheriting the view we need to add this field too. #odoo15technical #odootutorials Connect With Us: ———————— ➡️Website: […]
In this video, we are discussing how to show a specific view on the action in Odoo development. #odootechnicalvideos Video Contents ————————- 00:10 Introduction 00:30 Specific view on an action By mentioning the Id of a record in the view_id of an act window we can show that specific view when the corresponding record action […]
This video is about how to open a form view while clicking a button. On the button action we can return the view we need to open like this. #odootechnicalvideos #odoovidoes #odoo15developmentvideos Here we can pass our model to ‘res_model’ and the particular view to ‘view_id’ def my_button(self): return { ‘name’: “Your String”, ‘type’: ‘ir.actions.act_window’, […]
In this video, we are discussing how to add a new option in an existing selection field in odoo. #odoodevelopmentvideos Video Contents 00:10 Introduction 00:45 Adding a New Item in Selection Field #odoo15videos First, we inherit the model in which the selection field is defined. Then we redefine the field by just adding the selection_add […]
In this video, We can discuss how we can show sample data in tree, kanban view. If the model does not contain any data at that time sample data will show. #odoodevelopmentvideos Video Contents 00:00 Introduction 01:18 Adding Sample =1 Attribute in a Tree, Kanban View Only we need to just add sample = 1 […]