-
Notifications
You must be signed in to change notification settings - Fork 1
/
__manifest__.py
46 lines (40 loc) · 1.29 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Part of Odoo. See LICENSE file for full copyright and licensing details.
# Copyright (C) 2016 MARLON FALCON HDEZ (<http://www.marlonfalcon.cl>).
# contact: [email protected]
######################################################################
{
'name': 'Sistema de Información Hospitalario SIS-1',
'version': '1.1',
'author': 'Marlon Falcon Hernandez',
'maintainer': "Leonardo J. Caballero G.",
'category': 'Accounting & Finance',
'summary': 'Modulo de gestión de hospital 2016 - 2019',
'sequence': 30,
'website': 'https://www.marlonfalcon.cl',
'description': """
It is an example module
=======================
With this module we will make our first application in Odoo.
* One
* Two
Note: You need the 'Sales' application.
""",
'license': 'AGPL-3',
'depends': ['sale', 'base_setup', 'product', 'analytic'],
'data': [
'security/security.xml',
'security/ir.model.access.csv',
'views/partner_view.xml',
'views/hospital_view.xml',
'views/specialty_view.xml',
'views/laboratory_view.xml',
'views/consultation_view.xml',
],
'images': ['static/description/icon.png'],
'installable': True,
'active': False,
'auto_install': False,
'demo': [
'demo/demo.xml',
],
}