Hooks are functions that run before, after, or in place of existing code. Hooks, functions that are displayed as strings, are contained in the __init__ .py file of an Odoo module. Hooks are defined within a module’s __manifest .py file using the keywords listed below. The types of hooks used in Odoo include 1. pre_init_hook […]
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. They are defined inside the __manifest__ file. They are used to create some records. Odoo hooks are in different types, such as a) Post_init_hook […]
The latest Odoo 16 Accounting management system offers a complete package equipped with efficient tools and features which aid you in managing all accounting operations in a professional manner. Manual efforts and errors in financial management can be lessened by using the reliable accounting tools provided by Odoo ERP software. Proper usage of the Accounting […]
In Odoo, there are Settings options where users can set the configuration options according to their wish. Configuration Settings options provided for each application in Odoo make it more convenient for users by allowing them to configure parameters based on their business needs. Sometimes it is also possible not to use any features at all. […]
The context in Odoo is a part of the environment of a record set. It is basically a python dictionary that carries the session data. This data can be used on both the client-side user interface and also the ORM[1] business logic in the case of the server-side. So most importantly we can use the context […]
Sometime we might have come across a situation where we need to conditionally apply attributes to the fields. In Odoo we can conditionally apply some of the attributes to a view component which is based on other fields. There are three attributes that we can apply like this that are invisible, read-only, and required. With […]
Sometimes we may go through situations where we have to make some fields read only, invisible, or required based on another field. In Odoo, these types of situations can be handled by using attrs (Attributes). In this blog, we can discuss how to use attrs in Odoo 16. For that, we can consider the model […]
A firm can process reports to maintain a business successfully. The performance of a company manages quickly through various operations and reports. Analytic accounting ensures businesses evaluate accounting documents, interpret results and formulate reports. On another side, users can manage analytical distributions through Analytic tags. You can ease your report generation and related operations by […]
Sometimes we will come across situations where we will have to apply some conditions in viewing, reading, or writing fields. Odoo helps us to do the same using Attributes(attrs). Using this, we can conditionally apply attributes to fields. invisible, read-only, and required are the main 3 attributes. Using these attributes, we can hide a field […]
Odoo 16 Point of Sale (POS) has an advanced feature that allows you to ship sold products later. This can be useful in a variety of situations, such as when you need to order more inventory before you can ship the product or when the customer wants to pick up the product at a later […]