In Odoo, we can enhance sales order management by adding a menu that allows bulk updating of sale order states based on the selected customer. This feature simplifies order processing by fetching all orders/ quotations for a customer and enabling bulk confirmation of orders. This also can be used for any other action that you want to perform in bulk for Sales orders.
Changing Sale Order State via QR Code Scan in Odoo 17
In this approach, we leverage Odoo’s controller functionality to establish a connection between a URL and a webpage.
How to Display Computed Fields in a Tree View in Odoo 18 ERP with a Real-Life Example
In this article, we’ll demonstrate how to display computed fields in a tree view in Odoo using a real-life scenario. Let’s say you want to display the tags from sales orders in the respective invoices’ tree view. This can help your finance team quickly identify the context of invoices without navigating back to the sales order.To achieve this, we will define a computed field in the account.move model (Invoice model) that fetches related sales order tags and displays them in the invoice tree view.
How to Add Tags Filter in Odoo ERP Sales Reporting with SQL Query Enhancements
In this article, we’ll explore how to add a Tags Filter in the Sales Reporting feature of Odoo. The data in the Reporting tab is often retrieved through SQL queries based on selected filters. However, filtering by tags can lead to SQL query errors when the name field is used in both the sale.order and crm.tag tables.
Define Access Rights for the Model
In your Odoo custom module, create a security folder and add a file named ir.model.access.csv. This file is required to manage access rights for the model.
Execute a Python Method on Button Click in Odoo 18
we will demonstrate how to update a student’s department using a wizard form in Odoo. The wizard will allow the user to input a new department name and apply the change to the selected student’s record upon clicking a button.