Odoo 18 isn’t officially released yet but information from the roadmap suggests there will be a revamped product view focusing on improved usability. Here’s what we can expect: Simpler Terminology: Labels like “Can be Sold” and “Can be Purchased”, recurring are replaced with clearer terms like “Sales” and “Purchase”, subscription for better user understanding and Point […]
In Odoo, a sequence number serves as a unique identifier for records within specific models, ensuring each entry is distinct and sequentially ordered. This tutorial explores the creation and customization of sequence numbers in Odoo 17, focusing on their application in sales orders, purchases, and invoices. Discover how to personalize sequences with options like prefixing, […]
In Odoo, a ticket is a record within the Helpdesk module that represents a customer support request. It essentially acts as a digital file that tracks all the communication and activity related to a specific customer issue. Here’s a breakdown of what a ticket in Odoo typically entails: Customer Issue: This is the core of […]
Conquering Language Barriers: Multi-Language Websites in Odoo 17 In today’s globalized world, reaching a wider audience is essential for any website. But language barriers can often hinder your reach. Thankfully, Odoo 17’s website module empowers you to break down these barriers and showcase your website in multiple languages. This guide explores the multi-language functionalities and […]
In this video, we will explore how to create and use compute fields and compute functions in Odoo 17. Compute fields are special fields whose values are computed dynamically based on other fields or data in the system. This feature allows you to create fields that automatically update their values when related fields change, ensuring […]
In Odoo 17, the ability to set default values for fields dynamically using functions is a powerful feature that enhances flexibility and customization options within the system. Unlike static default values, which remain constant regardless of circumstances, dynamic defaults enable developers to define default values based on specific conditions or calculations.To implement dynamic default values, […]
In Odoo, a common requirement is to add custom fields to various models like products, customers, or orders. When integrating these custom fields into the Point of Sale (POS) module, it’s crucial to ensure they are properly loaded and utilized within the POS interface. Odoo offers several methods for loading data into the POS module, […]
Search filters in Odoo 17 serve as a comprehensive toolkit, offering users many options to navigate and analyze their data effectively. These filters empower users to fine-tune their search criteria precisely, allowing them to specify the exact attributes and conditions needed to retrieve relevant records. Whether users are searching through lists, forms, or kanban boards, […]
In Odoo 17, SQL constraints are used to enforce data integrity rules at the database level. These constraints ensure that the data stored in the database meets certain criteria or conditions. SQL constraints are defined within the Python models of an Odoo module and are then translated into corresponding SQL constraints when the module is […]
In Odoo, A One2many field signifies a one-to-many relationship between two models, allowing one model to have multiple related records from another model. The onChange method triggers actions when a field’s value changes, commonly used to update other fields. To update a One2many field from another field’s onChange method in Odoo, declare the One2many field to […]