How to create Qweb reports in odoo 14

Qweb is a template engine or reporting engine which can be used to create reports. Odoo uses Qweb for generating reports. Qweb provides several tools for creating a report. By using Qweb, we can manipulate the…

How To Build A Website In Odoo 14

WEBSITE CREATION IN ODOO 14 Our website builder helps bring your unique vision to life—no design or code experience required. Create a customizable, mobile-optimized website within the hour. All you need to start is a…

Debugging In Odoo 14

DEBUGGING IN ODOO 14 In software development and programming, debugging is the process of distinguishing and fixing out bugs. Debugging methodologies include problem simplification, unit testing, clustering of bugs, backtracking, control flow analysis, coordinated testing, and…

How To Configure Fiscal Position In Odoo 14

FISCAL POSITION IN ODOO 14 Fiscal Positions in Odoo 14 Accounting module is a tool that you can easily manage various Taxes. Fiscal positions will let you create rules to change and collect taxes and…

How To Configure Tax In Odoo 14

Tax Configuration In Odoo Calculating taxes has always been a difficult part of accounting. Any inconsistency or error in tax calculation can land a firm in trouble. Odoo 14 Accounting module offers a comprehensive support system to…

Looping In Odoo 14

Repeating code over and over again known as a loop. And is also a fairly common scenario in programming. Python provide couple of ways to doing that.   Why we use loop in programming? There…

How to change status of a form while clicking Save

Changing Status by Clicking Save In Odoo   Step1: First you want to create one status bar in your form In py file you need to add a new class  and add the field eg: from…

Sequence Number In Odoo 14

SEQUENCE NUMBER IN ODOO   The sequential field in Odoo also known as an auto incremental field generates an auto incremental number every time a new record is generated. If we need to add a sequence…

List View In Odoo 14

LIST VIEW IN ODOO 14 In Odoo, views are ways via which models/objects get displayed to the end-user. Views of different types and each view represent a mode of visualization, and these turn the modules more…

One2many And Many 2one In Odoo 14

One2many in odoo These are just mappings, You will mostly find them on any framework which uses a relational database. One2Many: Object A can have one or many of objects B (E.g A person can have many…