ODOO
Creating Sequences Dynamically for documents, When a Company Is Created in Odoo 18

Creating Sequences Dynamically for documents, When a Company Is Created in Odoo 18

In Odoo, sequences are used to generate unique identifiers for various documents such as orders, invoices, and quotations. While Odoo allows you to manually configure sequences, it’s often necessary to create default sequences dynamically, especially when dealing with multiple companies within the same Odoo instance. This is crucial in a multi-company setup, as each company should have its own set of document sequences to maintain proper isolation between their records.

read more
Bulk Updating Sale Order Status Based on Customer in Odoo 17 ERP 

Bulk Updating Sale Order Status Based on Customer in Odoo 17 ERP 

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.

read more
How to Display Computed Fields in a Tree View in Odoo 18 ERP with a Real-Life Example

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.

read more