Odoo JavaScript Programming Tutorial (Part One) – Create Widget View
As a web-based application, for programmers who have worked on web applications before, odoo sometimes feels a bit strange. Because we rarely do programming with the javascript language. Almost all logic is written on the backend with python, except when customizing the point of sale or e-commerce module. For you, who are starting to learn …. Read More
How to Install Odoo on Windows
Odoo is a web-based open source ERP software. In one odoo application, there are many modules/addons that you can install as needed. For example, if you need an application for sales transactions, you can install the Sales module, if you need a production application, you can install the Manufacture module, and so on. Odoo can …. Read More
How to Record the Data Changes in Odoo
In the odoo Sales menu, if you open the Quotation or Order menu, at the very bottom of the form there will be a block. If you make changes to the sales order form, for example changing the customer name, changing the price, etc, the changes will be recorded in that block. As shown below. …. Read More
How to Create an Excel Report File in Odoo
To create reports in PDF or HTML file odoo has provided its own model, namely ir.actions.report. With this model, we can create PDF and HTML reports quite easily, without having to think about how to retrieve data from the database or how to download the reports. Unfortunately, to create reports in an excel file, we …. Read More
How to Call Odoo API with PHP
Odoo has provided an API that can be accessed from outside of the odoo application for all model by default. So if we want to link our odoo application with other application we don’t need to create our own API. Just call the API that has been provided by odoo. In this tutorial, I will …. Read More
How to Write Odoo Domain in Easy Way
In odoo, domain is a list that contains certain expressions that are used to filter some data from the database. Domain will be translated by odoo into an SQL expression to fill the where clause. For example, if we have a domain like this. The domain above if applied to the sale.order model will produce …. Read More
Open Odoo’s Many2many Field, Many2one and the List View in New Browser Tab
In my article previously, I have discussed about how to create a widget to open the Many2many field in the new browser tab. Not a long ago I have created an improved and more complete version of that module. In the previous version, not all Many2many fields with the many2many_tags widget could be opened in …. Read More
How to Use Odoo’s Context Like a Pro
Context in odoo ecosystem is a python dictionary which is usually used as a marker to turn a feature off or on. With a context we can set a model to have different features if opened from different menus. For example, let’s say we have a master product like the picture below. Pay attention to …. Read More
How to Override an Odoo Widget
Odoo has many widgets that ready to use, such as many2many_tags, image, html, handle etc. How to use those widgets are relatively easy. But of all the widgets that Odoo has, I think the many2many_tags widget is kinda weird. Why ? Because it can’t be clicked. I mean if I click on that widget, I …. Read More
How to Add a New Artisan Command in Laravel
When working with the Laravel framework, of course we are familiar with the php artisan command. Without this command working with Laravel would not be as easy as now. If you don’t know, we can add our own custom commands to artisan command. If you like to work automatically and like to work with the …. Read More