The issue arises because the image_1920 field is of type binary, and Odoo does not support tracking on binary fields (like images or file attachments). The mail tracking system tries to create tracking values for fields (to track changes in the chatter), but it fails when it hits a binary field. You need to remove […]
Odoo 18 Form View attributes are used to control overall Form behavior. It allows users to interact with individual records of a model. Here are four types of attributes we are going to discuss in this blog. Create Attribute It controls whether users can create new records in a form view. In the case of […]
In Odoo, notebook and pages are UI (User Interface) elements used primarily in form views to organize and display data in a structured, tabbed layout.A notebook is a container in Odoo XML views that holds multiple pages. It represents a tabbed interface, allowing users to navigate between different sections of a form without leaving the […]
In Odoo, a Help Tooltip is a small informative text that appears when a user hovers over (or clicks on, depending on configuration) a field label or element in the user interface. It’s used to provide additional guidance or explanations about the purpose or usage of a particular field or feature, improving the user experience […]
🎥 Welcome to CBMS. In this tutorial, you’ll learn how to add an image field in a form view in Odoo 18 — step by step. Whether you’re customizing your own module or enhancing an existing model, this guide will help you integrate image fields seamlessly in your Odoo applications. 📌 In this video, you’ll […]
What is a Form View in Odoo? In Odoo, a form view is one of the primary UI components used to display and interact with a single record of a model. It’s used when users want to create, read, update, or delete (CRUD) detailed information about a specific item—such as a product, customer, sales order, […]
This is the most common and recommended way. In your module’s XML file where you define the menu item, you can use the web_icon attribute. The value of this attribute should point to the icon you want to use * your_module_name: The technical name of your module. * static/description/icon.png: The path to your icon file […]
In Odoo development, a view is a way to define how data is presented to the user in the UI. Views are written in XML and determine the layout and behavior of forms, lists, kanban boards, and other UI components. Types of Views in Odoo Form View (form) Used to display a single record in […]
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’, […]