odoo

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 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 »