-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
44 lines (39 loc) · 1.11 KB
/
Copy path__manifest__.py
File metadata and controls
44 lines (39 loc) · 1.11 KB
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
# __manifest__.py
{
'name': 'Visit Management',
'version': '1.0',
'summary': 'Manage customer visits and orders',
'description': """
This module allows you to manage customer visits and related orders.
Track visits, create quotations, and manage the sales process.
""",
'author': 'Your Name',
'website': 'https://www.yourwebsite.com',
'category': 'Sales',
'depends': ['base', 'sale', 'mail', 'web'],
# Data Files
'data':
[
# Security (load in correct order)
'security/visit_security.xml',
'security/visit_rules.xml',
'security/ir.model.access.csv',
# Data
'data/visit_sequence.xml',
# Views
'views/visit_views.xml',
'views/visit_menus.xml',
'views/wizard_make_sale_views.xml',
'views/res_config_settings.xml',
],
'assets': {
'web.assets_backend': [
'visit/static/src/js/visit_location.js',
],
},
'demo': [],
'installable': True,
'application': True,
'auto_install': False,
'license': 'LGPL-3',
}