Records of a model are created using create(). The method will create a single record and return its database identifier. create() takes a mapping of fields to values, used to initialize the record. For any field which has a default value and is not set through the mapping argument, the default value will be used. […]
Views are defined how records should be displayed to end-users. They are specified in XML which means that they can be edited independently from the models that they represent. They are flexible and allow a high level of customization of the screens that they control. There exist various types of views. Each of them represents […]
#odooexternalapi How to list records using Odoo external API using XML-RPC, this short video details listing records in odoo. Records can be listed and filtered via search(). external-api code: url = ” db = ‘test_local_enterprise_db’ username = ’14’ password = ’14’ import xmlrpc.client common = xmlrpc.client.ServerProxy(‘{}/xmlrpc/2/common’.format(url)) version = common.version() print(“version”, version) uid = common.authenticate(db, username, […]
Odoo is quickly becoming the most popular open-source software platform for businesses of all sizes and in all industries. Odoo’s goal is to make it possible for your business to integrate all of your existing software and applications into one intuitive, easy-to-use dashboard. More than 2 million users across 55,000 companies worldwide currently use Odoo. […]
#shorts The website module of Odoo ERP will be your reliable tool for building a website and managing it easily. The Odoo website builder has dedicated tools of operation which will provide you with functional options to create, design, and manage websites for your business. Moreover, the simple drag and drop functional and powerful website […]
The video explains how to create a website using Odoo 14. Odoo 14 is a comprehensive solution for all your website-related worries. This open-source ERP solution helps to design catchy websites within the shortest time. You have to install the website module and the video explains how to install the Odoo 14 Website module. Video […]
This video explains how to create a dashboard in Odoo. Dashboards and reports play a key role in visualizing the data and it also helps to highlight important information in a better way. This will help in situations where we need to make quick business decisions as it will display all the necessary information in […]
Odoo modules are collections of business logic that help to improve existing functionality or add new functionality in Odoo. Odoo is a modular framework, and all of the core modules are available in the Odoo addons. The path of the addons can be found in the Odoo configuration file. You can either place your custom […]
This video explains about forecast widget in the tree view. This feature is mainly used in sale orders to obtain the forecast report of a product from the order line. Video Content: 0:00 Introduction 0:20 We are checking the forecast widget in odoo 0:00 Open sale order 1:33 Goto pycharm and search for forecast widget […]
Odoo comes with a default website structure. It is a very basic “theme” that provides minimal structure and layout. When you create a new theme, you are actually extending this. Indeed it’s always enabled in your setup and it acts exactly like the CMS’s base structure we mentioned above, except that you don’t have to […]