-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path__manifest__.py
45 lines (42 loc) · 1.34 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
# -*- coding: utf-8 -*-
{
'name': "KM Hospital",
'sequence': 1,
'summary': """
A hospital management module.""",
'description': """
A hospital management module for creating patient, doctor,
department, medical test, and appointments.
""",
'author': "Kamrul & Niazi",
'website': "http://www.yourcompany.com",
'category': 'Services',
'version': '0.1',
'license': 'LGPL-3',
# any module necessary for this one to work correctly
'depends': ['base', 'hr', 'website', 'website_sale', 'mail'],
# always loaded
'data': [
'security/security.xml',
'security/ir.model.access.csv',
'data/appointment_seq.xml',
'wizard/create_appointment_view.xml',
'wizard/appointment_report_view.xml',
'views/patient_view.xml',
'views/doctor_view.xml',
'views/department_view.xml',
'views/appointment_view.xml',
'views/medicaltest_view.xml',
'views/website_patient_form.xml',
'views/website_patient_view.xml',
'views/website_apntment_form.xml',
'views/equipment_sale.xml',
'views/sales_order.xml',
'reports/report.xml',
'reports/sale_report_inherit.xml',
'reports/appointment_report.xml',
],
'installable': True,
'application': True,
'auto_install': False,
}