A rescue session in Odoo is a handy feature in the Point of Sale (POS) module that helps you recover data from interrupted sessions. It comes into play in two main scenarios: Lost internet connection: If your internet connection drops while you’re working on a POS session, Odoo will save the order data in your […]
Imagine you run a bakery and frequently place orders with a local flour mill. Here’s a real-time example of how Odoo predicts products from vendor bills: Scenario: You receive a new bill from the flour mill but haven’t had time to enter the details into Odoo. Prediction: Based on past bills from this vendor, Odoo […]
This video provides a step-by-step guide on how to install extra Python packages for Odoo development directly from PyCharm. By following these instructions, developers can efficiently manage their Odoo customization projects within the PyCharm environment, enhancing their productivity and ensuring the smooth integration of additional functionalities into the Odoo platform. #Odoo17 #Python #Pycharm #DevelopmentTutorial #OdooDevelopment […]
The “Allow Ship Later” functionality in Odoo 17 POS allows you to process sales orders where the customer receives the products at a later date, separate from the initial payment. This caters to scenarios where: Products are out of stock: The POS order can be confirmed and payment collected even if the items are unavailable for […]
Odoo 17’s inventory management system offers granular control over user access through its access rights functionalities. This ensures that users can only view, edit, or create specific inventory data based on their roles and responsibilities within the organization. Understanding Access Levels: Odoo User Groups: The foundation of access control lies in user groups. Each user belongs […]
Odoo 17’s time off module offers flexibility in managing various leave categories for your employees. Time off types act as templates defining how leave requests are tracked, allocated, and approved. Here’s a breakdown of how they work: Creating Time Off Types: Navigate to the Time Off app within the HR module. Under the Configuration menu, choose Time Off Types. Click New to […]
Internal notes in a POS (point of sale) system are comments or messages added to a transaction or customer record that are not visible to the customer. They are used for communication and information sharing among staff members. Here are some common uses of internal notes in POS: Special instructions: Noting specific customer requests like “gift […]
Customer Relationship Management (CRM) systems often integrate quotation creation functionalities to streamline the sales process. Here’s a breakdown of how to create a quotation for an opportunity within your CRM: 1. Accessing the Opportunity: Locate the desired opportunity within your CRM. This typically involves navigating to the Opportunities module and searching by name, customer, or other relevant […]
Themes play a significant role in the visual presentation and user experience. They define the layout, style, and overall appearance of the website, including aspects such as colors, fonts, and page structure. Installing a theme in Odoo involves adding a new theme module to your Odoo instance. You can find themes in the Odoo App […]
In Odoo 17, a Many2many field represents a many-to-many relationship between two models. It allows you to link multiple records from one model to multiple records in another model. Each record in the first model can be linked to one or more records in the second model, and vice versa. You can empty a Many2many […]