Getting Started with AI Fields in Odoo 19 CRM | Automate Lead Scoring & Data Analysis | CRM Insights – CBMS Odoo ERP

In today’s video, we’re exploring how Artificial Intelligence is transforming Odoo 19 CRM. With AI now built directly into your CRM, sales teams can enrich opportunities, analyze customer data more effectively, and automate tasks that used to take hours of manual work. What You’ll Learn in This Video ✨ 🤖 How to use the AI […]

EP-24 How to Hide a Field in Form View in Odoo 18 | Make Field Invisible Based on Other Fields – CBMS Odoo ERP

In Odoo 18  the invisible attribute is used in XML views to control the visibility of fields, buttons, tabs, or other view elements in the user interface. This attribute is typically used within form views, tree views, kanban views, etc. Key Points: invisible=”1″ or invisible=”true”: Hides the field or element from the view. invisible=”0″ or invisible=”false”: […]

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-20: What are the General Properties of a Field in Odoo 18 | What are Fields in Odoo 18 | Odoo 18 – CBMS Odoo ERP

Odoo 18 General Properties Invisible: Enable this property when it is not necessary for users to view a field on the UI. This helps declutter the UI by only showing the essential fields depending on a specific situation. The Invisible attribute also applies inside Studio. To view hidden fields in Studio, click on a view’s View tab and enable Show […]

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

EP-17: What are Fields in Odoo 18 | What are Simple Fields in Odoo 18| Odoo 18 Development Tutorials – CBMS Odoo ERP

In Odoo, fields are used to define the data that a model (table) will store. What are Simple Fields? Simple fields are fields that store basic types of data like text, numbers, dates, booleans, etc. They do not create relationships between models — they just store raw data. 1.Text (char) The Text field is used for short […]

Exports: Default Fields in Odoo 18.2 | Odoo 18.2 Tutorials | Odoo 18.2 New Features | Odoo 18.2 – CBMS Odoo ERP

In the export screen, the default fields and their display order now match the underlying list view. Go to any module and choose a record in list view. Select action click on export. This pops up the widget, which has the default fields of the list view. #Odoo18 #OdooTutorial #OdooExports #OdooFeatures #ERP #BusinessSoftware #DataManagement #TechTutorial #SoftwareTutorial #OpenSource #DataAnalysis #Productivity […]

How to Manage Fields & Widgets in Odoo18 Studio | Odoo 18 Studio Tutorials | Odoo 18 Tutorials – CBMS Odoo ERP

Mastering Fields and Widgets is essential for Odoo 18 development. This tutorial covers: Different field types (char, integer, date, etc.) Common widget usage (text boxes, calendars, dropdowns) How fields and widgets interact in Odoo views Customizing fields and widgets for specific needs. Start building powerful and user-friendly Odoo applications! #Odoo18 #OdooStudio #OdooTutorial #OdooNewFeatures #OdooReleaseDate #OdooWidgets […]