How to pass datas to One2many fields in odoo 14

The One2many filed is used for making a field which contain many fields.This field consist of another models.For creating a One2many filed we have to define a new model(sub model).The main model’s One2many field is…

Status Bar In Odoo 14

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

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.…

How to create a Wizard in odoo14

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 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 14

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

Expenses Automatic Payment In Odoo

Expense automation is the use of software to automate submitting, approving, and recording expense reports. This lets you replace paper and eliminate the tedious use of spreadsheets to file claims. Expense automation helps organizations accurately track…

Purchse Automatic Validation In Odoo 14

ODOO PURCHASE AUTOMATIC VALIDATION  This module will help to validate the quotation in purchase & Receiving Goods & Bill Creation.   Odoo Purchase Flow & Purchase Automatic Validation * This module helps us to saving…

How To Add One More Page In Qweb Report

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…