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