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 …