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 […]
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, […]
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 […]
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 […]
college_erp/security: id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink access_college_student,access.college.student,college_erp.model_college_student,base.group_user,1,1,1,1 __manifest__.py ‘data’: [“security/ir.model.access.csv”, “views/college_student_views.xml”, “views/college_erp_menus.xml”, ], #Odoo18 #OdooSecurity #AccessRights #OdooTutorial #OdooDevelopment #OdooTechnical #ERP #BusinessSoftware #OpenSource #SoftwareTutorial #DataSecurity #OdooNewFeatures #OdooReleaseDate #Odoo18TechnicalTutorials #Odoo18Tutorials #Odoo18Development #Odoo18AccessRights #Odoo18Security #Odoo18NewFeatures #OdooTechnicalTutorial #Odoo18ERP #OpenSourceERP Connect With Us: ————————————— ➡️ Website: ➡️ Email: info@mycbms.com ➡️ Twitter: ➡️ LinkedIn: ➡️ Facebook: ➡️ Instagram: ➡️ Pinterest: #EP15 #Add #Access #Rights #Odoo […]
Creating a Window Action in Odoo 18 involves defining an action that opens a view (like a list, form, kanban, etc.) for a particular model. Window actions are usually defined in XML and can also be created manually through the UI or programmatically using Python if needed. Here’s how you can create one via XML, […]
In Odoo, actions are predefined operations that determine what happens when a user interacts with a menu item, button, or other UI elements. Actions define how views, reports, wizards, or other operations behave in response to user input. Types of Actions in Odoo Window Actions (ir.actions.act_window) Used to open views (form, tree, kanban, etc.). Example: […]