author

Module Guidelines in Odoo 15

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 […]

Module Debt Notebook V8

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 […]

Mixins in the Odoo 15 & Its Features

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 […]

Method Decorators in Odoo 15

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 […]