Hi please i need an answer for this: "What is the file that contains the definition of the OpenERP Apps i need it for an other button which will view that list of modules to install
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Boekhouding
- Voorraad
- PoS
- Project
- MRP
Deze vraag is gerapporteerd
1
Beantwoorden
3699
Weergaven
In each OpenERP module, there is a mandatory "__openerp__.py" file, also known as the manifset file, and in this file there is a section named "application" when stated to "True" makes this module appears in the "app" list.
following is an example of an __openerp__.py file :
# -*- coding: utf-8 -*-
{'name': 'The module name',
'version': '1.0.0',
'category': 'Category of the Module',
'depends': ['List of modules on which this module depends beside base',
],
'author': 'The Authorf',
'license': 'AGPL-3',
'description': """
The module description (text)
""",
'data': [],
'installable': True,
'application': False,
}
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
Aanmelden