Skip to main content

How to develop module in odoo

 Odoo Module (App) Development

First of all you need to active/run the app usinf pecifies database and enable the developer mode option in /settings/General settings

Step 1

Create Python package in addons folder with name 'Module Name' e.g School

Create 2 files inside School directory

1) __init__.py  2) __manifest__.py

Step 2

Write some information regarding module inside __manifest__.py file 

Code

{
'name': 'School',
'version': '1.1',
'author': 'AdnanZaib',
'summary': "School Management System",
'sequence': 1,
'description': "School Management System"
"Odoo v15",
'category': 'School',
'website': 'https://www.linkedin.com/in/adnan-zaib-devinlara/',
'depends': ['base']
}




Comments