Odoo

How To Add New Fields and Views To Existing Module (APP)

Let’s talk about How To Add New Fields and Views To the Existing Module (APP)  in Odoo ERP. You can also change the properties of the existing field with bonus part. Custom_addons Add this path on odoo.conf file addons_path = C:publicRavi Guptaodoo15.0addons,custom_addons Odoo_customization __init__.py from . import models __manifest__.py # -*- coding: utf-8 -*-{ ‘name’: …

How To Add New Fields and Views To Existing Module (APP) Read More »

How To Setup Odoo 15 Development Environment

How to Setup Odoo 15 Development Environment Using Pycharm in Ubuntu 22.04 Step : 1 Update the system sudo apt-get update  sudo apt-get upgrade Step : 2 Install Pycharm IDE Community edition sudo snap install pycharm-community –classic Step : 3 Install Python-3 and the necessary packages sudo apt-get install -y python3-pip sudo apt-get install python-dev …

How To Setup Odoo 15 Development Environment Read More »

How to Setup Odoo 16 Development Environment

How to Setup Odoo 16 Development Environment Using Pycharm in Ubuntu 22.04 Step : 1 Update the system sudo apt update sudo apt upgrade Step : 2 Install Pycharm IDE Community edition sudo snap install pycharm-community –classic Step : 3 Install Python-3 and the necessary packages sudo apt install python3-pip sudo apt-get install python3-dev build-essential …

How to Setup Odoo 16 Development Environment Read More »

How to Install Odoo 16 ERP on Ubuntu 22.04

In this article, we setup Odoo ERP on Ubuntu 22.04 LTS Server with step by step. Step : 1 Update the system sudo apt update sudo apt upgrade Step : 2 Install Dependencies sudo apt install build-essential wget git python3-pip python3-dev python3-venv python3-wheel libfreetype6-dev libxml2-dev libzip-dev libsasl2-dev python3-setuptools libjpeg-dev zlib1g-dev libpq-dev libxslt1-dev libldap2-dev libtiff5-dev libopenjp2-7-dev …

How to Install Odoo 16 ERP on Ubuntu 22.04 Read More »

How to Create a Custom Module in Odoo 15

Custom_addons Add this path on odoo.conf file addons_path = C:publicRavi Guptaodoo15.0addons,custom_addons Restaurant_Project __init__.py from . import model __manifest__.py # -*- coding: utf-8 -*-{ ‘name’: “Restaurant Project”, ‘version’ : “15.0.1”, ‘summary’: “””Restaurant Project will help in the management of Restaurant”””, ‘sequence’ : -101, ‘description’: “””Manage All Data In your Description”””, # Categories can be used to …

How to Create a Custom Module in Odoo 15 Read More »