STATUS BAR IN ODOO A status bar is a horizontal window at the bottom of a parent window in which an application can display various kinds of status information. The status bar can be divided into…
SMART BUTTON IN ODOO In Odoo Smart buttons allow you to see all the related records in the form view. We can also add a counter to count the number of records present in it.…
CREATING WIZARDS IN ODOO 14 Wizards are used to having interactive sessions with the dialogue boxes in Odoo.Mainly wizard is available in Transient model. Transient models: It’s based on the model TransientModel class. Moreover, the…
COMPUTE METHOD IN ODOO; Compute method is used for making a field value as compute value . First you need to write the fuction for compute field in python file eg: def compute_total_estimate(self) like this,…
DELEGATION INHERITANCE In Odoo, we use ‘_inherits’ attribute for delegation inheritance. The purpose is for extending a model with your new model without affecting it’s views. So, the database tables will contain fields in your…
ORM Methods In Odoo: ORM means “Object Relational Mapping” this are the method used in odoo14 to control the database, without using sql codes. Types of orm method . 1.search() 2.browse() 3.create() 4.update() SEARCH METHOD…
The reports are working with Report Actions and Report Templates. Additionally, the report templates are used in report actions. Moreover, a report action is triggered while printing a report that you can either call this…
Tally Integration Tally software has been designed to provide extensive integration capabilities that enable businesses to build cross-platform solutions without compromising data integrity and reliability. Odoo Tally Connector allows you to connect your Odoo with Tally.…
Classical Inheritance In Odoo 14 When we use or inherit an old class or model, methods, properties, and views in the new class or model, it is known as Inheritance.When a class derives from another…
How To Create Accounting Purchase Invoice in Odoo14 Purchase Receipts are not invoices but rather confirmations of received payments, such as a ticket or a receipt.This feature is meant to be used when you pay…