How to Activate Developer Mode in Odoo 18 | Odoo 18 Tutorials | Odoo 18 Developer Tools | Odoo 18 – CBMS Odoo ERP

Enable Developer Mode in Odoo in seconds! Access advanced settings, debug tools, and hidden features easily. #Odoo18 #Odoo18Tutorial #DeveloperModeOdoo #OdooDeveloperTools #Odoo18NewFeatures #Odoo18Release #OdooFunctional #OdooDevelopment #ActivateDeveloperMode #OdooERP #Odoo18Development #DeveloperMode #OdooTutorials #OdooDeveloper #OdooFunctional #NewFeatures #ReleaseDate #TechTips #ERP Connect With Us: ————————————— ➡️ Website: ➡️ Email: info@mycbms.com ➡️ Twitter: ➡️ LinkedIn: ➡️ Facebook: ➡️ Instagram: ➡️ Pinterest: #Activate […]

EP-21 How to Create & Add Fields in Odoo 18 | Fields in Odoo 18 | Odoo 18 Technical Tutorials – CBMS Odoo ERP

college_student.py admission_no = fields.Char(string=”Admission Number”, required=True) admission_date = fields.Date(string=”Admission Date”, required=True) first_name = fields.Char(string=”First Name”, required=True) last_name = fields.Char(string=”Last Name”, required=True) father_name = fields.Char(string=”Father’s Name”, required=True) mother_name = fields.Char(string=”Mother’s Name”, required=True) communication_address = fields.Text(string=”Communication Address”, required=True) street = fields.Char() street2 = fields.Char() zip = fields.Char() city = fields.Char() country_id= fields.Many2one(‘res.country’) state_id = fields.Many2one(‘res.country.state’, ‘Fed. State’, […]

EP-19: What are Relational Fields in Odoo 18 | Odoo 18 Relational Fields Tutorials | Odoo 18 Videos – CBMS Odoo ERP

In Odoo, relational fields are fields that create a relationship between models (i.e., between different database tables). They’re used to link records from one model to another. This is one of the most powerful features in Odoo’s ORM (Object-Relational Mapping), making it easy to define and manage relationships between different business objects. There are three […]

EP-18 What are Fields in Odoo 18 | Simple Fields Part 2 | Odoo 18 Development Tutorials | Odoo 18 – CBMS Odoo ERP

The Date & Time field is used to select a date on a calendar and a time on a clock. The user’s current time is automatically used if no time is set.  Tip As well as general properties, some specific properties are available for Date & Time fields that have the Date & Time or Date Range widget set. Date Range (daterange) The Date Range widget is used […]

How to Install Odoo 18 on Ubuntu 24.04 LTS Server | Installation of Odoo 18 in Server | Odoo 18 – CBMS Odoo ERP

Odoo is about to release its new version, Odoo 18. This version comes with many important functional and technical changes. This latest version promises to elevate the user experience and further streamline business operations. In this video, we will guide you on How to Install Odoo 18 on Ubuntu 24.04 LTS Server Step 1: Log in […]

EP-11 What are Scheduled Actions in Odoo 18 | Actions in Odoo 18 | Odoo 18 Development Tutorials – CBMS Odoo ERP

In Odoo, a Scheduled Action (also called a cron job). Scheduled Actions in Odoo are automated tasks that run at set intervals without user input. They are used for things like sending reminder emails, updating reports, or cleaning up old data. You can set them up in Settings → Technical → Scheduled Actions, choosing: What […]

EP-9: How to Create a Menu in Odoo 18 | Odoo 18 Development Tutorials | Odoo 18 Technical Tutorials – CBMS Odoo ERP

In Odoo, menus are part of the user interface that help users navigate to different features and functionalities within each module. Menus are structured hierarchically: main menus, sub-menus, and menu items (actions or views). Here’s a breakdown of menus in Odoo: 🔹 1. Main Menus These are the top-level categories visible on the top bar […]

EP-6 What are Models in Odoo 18 | What are the Different Types of Models in Odoo 18 | Odoo 18 Videos – CBMS Odoo ERP

In the Odoo framework, “models” are used for structuring and managing data that the Odoo application stores. An Odoo model is a Python class that represents a database table. Odoo primarily uses three types of models: 1.models.Model (Regular Models): 2.models.TransientModel (Transient Models): 3.models.AbstractModel (Abstract Models): 1. Regular model/standard model The primary reason for using regular models is […]