Odoo

Install PostgreSQL 10 in Linux

1. First, we’ll obtain the authentication keys needed to validate packages from the PostgreSQL repo. $ wget –quiet -O – https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add – 2. As a best practice, we will update our server before installing PostgreSQL. $ sudo sh -c ‘echo “deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -sc)-pgdg main” > /etc/apt/sources.list.d/PostgreSQL.list’ 3. After the update […]

Install PostgreSQL 10 in Linux Read Post »

Odoo

Generate an XLSX Report in Odoo 10

Introduction Odoo doesn’t support custom XLSX report generation by default, it has some features that generate reports for XLSX but it can’t be used for custom generation. To Generate XLSX report in odoo 10 some dependent steps always need to follow. So let’s start the process Pre-requisite As there is no default support available for

Generate an XLSX Report in Odoo 10 Read Post »

Scroll to Top