🚀 In this step-by-step tutorial, I’ll show you how to set up an Odoo 19 development environment on Ubuntu using PyCharm IDE. Whether you’re a beginner or an experienced developer, this guide will help you configure everything you need to start building and customizing Odoo modules efficiently. 🔑 What you’ll learn in this video: Installing […]
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 […]
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 […]
In Odoo, you can count records using the search_count method on an Odoo model. This method returns the number of records that match a given domain (filter). search_count is used to count records based on certain conditions and is commonly used when you need to know how many records match a set of criteria without […]