Odoo is an ERP software, which is open-source software meaning we have access to the source code. Odoo tracks our business aspects of the company such as sales, purchase, finance, assets, more resources, and all transactions of the business. An Odoo developer can create customized modules and can integrate them easily into the existing workflow […]
The master production schedule comes as an enterprise feature in the odoo manufacturing module. Many manufacturing units practice the method of Make to Stock so as to fulfill customer demands. MTS briefly expanded Make to Stock is a strategy used by manufacturing companies in order to fulfill the future demands of the products. If we […]
Odoo is an open-source solution, and it consists of different business modules. A developer can modify or integrate the business workflows with Odoo. For developing Odoo modules we have certain guidelines which will help the developers to improve the Odoo code quality. We can go through these guidelines in this blog. Module Structure In Odoo […]
INTRODUCTION: Comfortable Sales For Your Regular Customers The module allows to make the sale on credit in a single click. You do not need to take money from customer each time. You’ll be able to offer your customer make the prepayment or pay periodically, e.g. once in a month. It’s a good solution for small […]
We can create new qweb reports in Odoo based on our requirements. Sometimes we may need to make some changes in the existing reports. We can modify the existing qweb reports by inheriting the existing qweb report. If you want to add something to the existing qweb report, first you have to inherit the qweb […]
Website is one of the most useful modules a free ERP software like Odoo can provide. It comes with a wide variety of features even in the community edition. In this blog, we will look at how we can edit the existing web pages that come within the website module. There are several ways to […]
In the aspects of operations of the product-based business, the warehouse operations play the significant and crucial key for complete functionality as it drives the entire business. The business will have the essential aspects o the functioning centralized with the business based on the movement of the products in and out of the warehouse. In […]
Mixins are abstract models that provide useful features through inheritance. They do not have an actual representation in the database. Instead, they provide some set of features that can be mixed with other models. By default the Odoo addons provide several mixins, some of the commonly used mixins are, ‘mail.thread’, ‘mail.activity.mixin’, ‘rating.mixin’, etc. In this […]
Decorators allow you to modify the way a method behaves. Moreover, it allows us to extend the behavior of another function, or in short, it takes in a function and adds certain functionality to it, and then returns the function. This blog will describe method decorators in Odoo 13 The decorators in Odoo include the […]
In Odoo, the method decorators are used to do or add additional functionalities with the functions with which we have added the decorator. The method decorators are python functions defined in Odoo/api.py, which can be used with the other functions as wrapper functions. The method decorators in Odoo 15 are described below: api.onchange The onchange […]