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, […]
A start category in Odoo 17 Point of Sale (POS) is a category that automatically displays when you begin a new POS session. It essentially filters the product selection to a specific group by default, saving cashiers time and improving efficiency. Default Behavior: By default, if no start category is set, all products in your […]
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, […]
Odoo 17’s Inventory Management module streamlines the checkout process when an item leaves your warehouse or shop floor. This ensures proper documentation, and inventory tracking, and facilitates a smooth handover of goods. The Checkout Process Flow: Initiating the Checkout: The checkout process typically begins with a Delivery Order. This document outlines the specific items, quantities, […]
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 […]
Shiprocket is an Indian e-commerce logistics and shipping software solution company founded in 2011 by Saahil Goel. It is considered India’s largest eCommerce enablement platform providing digital retailers with an end-to-end customer experience platform. In logistics and shipping software, a shipping connector is a software application that bridges the gap between your e-commerce platform or […]
In Odoo 17, to make a field storable, set store=True when defining it. By default, fields are storable unless set to store=False. Storable fields ensure data persistence across sessions and server restarts, crucial for maintaining data integrity and retrieval. However, computed or related fields are not stored by default (store=False) unless explicitly specified as store=True. […]
Odoo 17’s Time Off application offers functionalities to manage employee leave effectively. A crucial aspect of this is configuring public holidays and mandatory work days. This ensures accurate leave tracking, avoids scheduling conflicts, and streamlines the leave request process. Public Holidays: Creating Public Holidays: Navigate to the Time Off app, then Configuration followed by Public […]
By turning on the Price control functionality, the Odoo 17 PoS module now provides the opportunity to restrict price adjustments. You can limit pricing changes to managers exclusively with it. This implies that normal users won’t be able to alter the POS’s product prices. Businesses that wish to stop employees from unintentionally or purposely adjusting prices may […]