How to Add a Tool Tip to a Field in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

Learn how to enhance user experience in Odoo 17 by adding tooltips to fields. Tooltips provide helpful hints or additional information when users hover over specific fields, improving usability and guiding users through the system. #odoo17 #odootutorials This tutorial demonstrates the steps to add tooltips to fields in Odoo 17, empowering users with contextual information […]

How to Use Serial Numbers to Track Products in Odoo 17 Inventory | Odoo 17 Inventory Tutorials – CBMS Odoo ERP

In Odoo, a serial number is a unique identifier assigned to an individual product to track its movement throughout the supply chain. It’s one of the two main methods for product traceability within the software, alongside lot numbers which identify batches of products. Here’s a breakdown of serial numbers in Odoo: Function: Serial numbers distinguish […]

Least Packages Removal Strategy in Odoo 17 Inventory | Odoo 17 Inventory Tutorials – CBMS Odoo ERP

The purpose of the Least Packages removal strategy in Odoo is to optimize inventory management by minimizing the number of packages opened to fulfill orders #odoofunctionalvideos Scenario: Imagine you have a product called “Flour” with a unit of measure in kilograms (kg). You store Flour in two types of packages: Large packages: Each containing 100 […]

Costing method in Odoo 17 Inventory | Inventory Valuation in Odoo 17 | Odoo 17 Inventory Tutorials – CBMS Odoo ERP

A costing method is a technique businesses use to determine the cost of producing a good or providing a service. It involves analyzing various cost elements like raw materials, labor, and overhead expenses to accurately calculate the total cost per unit. #odoo17 There are different costing methods, each with its own advantages and best suited […]

What is MTO? | Make-To-Order in Odoo 17 Inventory | Odoo 17 Inventory Tutorials – CBMS Odoo ERP

MTO in Odoo stands for Make To Order. It’s a specific inventory management strategy within the software. #mto #odooinventory #odoofunctionalvideos Here’s a breakdown of MTO in Odoo: Concept: With MTO, Odoo triggers production of an item only after a sales order is confirmed. This means you don’t manufacture or purchase products to keep in stock. […]

How to Create a Toggle Button in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

In Odoo toggle buttons are commonly used in user interfaces to allow users to switch between two states or values.They are often utilized to represent boolean fields. #odootutorials Boolean fields in Odoo represent data that can be either true or false, yes or no, on or off,active or inactive. #odoo17 #odoodevelopment These fields are typically […]

Automatic Reordering Rule in Odoo 17 Inventory | Odoo 17 Inventory Tutorials – CBMS Odoo ERP

Odoo’s automatic reordering rule helps manage inventory levels by automatically generating purchase or manufacturing orders when stock dips below a certain point. Here’s a breakdown of how it works: Setting Up the Rule: Configure the product: Navigate to the product you want the rule for in the Inventory app. Enable Reordering Rules: Look for the “Reordering Rules” […]

How to use post init hook in Odoo? | Post init hook in Odoo 17 | Odoo 17 Development Tutorials – CBMS Odoo ERP

In Odoo, hooks are functions that are presented as a string in the __init__ file of a module. They are the functions that can execute before and after the existing code. #odoo17 Post_init_hook are the functions that will execute after the module installation. These functions are included by specifying their names within the init.py file […]