-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
38 lines (37 loc) · 1.4 KB
/
Copy path__manifest__.py
File metadata and controls
38 lines (37 loc) · 1.4 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
{
'name': 'Legal Practice Management',
'version': '1.0',
'summary': 'Transform Odoo Projects, CRM and Contacts into Legal Practice Management for law firms, with suitable legal fields in CRM client profiles.',
'description': 'Customizes the Odoo Project app for legal case and matter management, and adds suitable legal fields in the client\'s CRM profile.',
'author': 'Mohamed Essam',
'website': 'https://essamsalem.com',
'category': 'Project',
'depends': ['project', 'crm', 'contacts', 'base'],
'data': [
'security/security.xml',
'security/ir.model.access.csv',
'data/legal_case_data.xml',
'views/project_views.xml',
'views/crm_client_fields_view.xml',
'views/res_partner_view.xml',
'views/res_config_settings_view.xml',
],
'installable': True,
'application': True,
'license': 'LGPL-3',
'images': [],
'demo': [],
'test': [],
'css': [],
'js': [],
'qweb': [],
'installable': True,
'auto_install': False,
'application': True,
'sequence': 0,
# Use post_init_hook to run code automatically *after* installation is complete.
# Here we call a function that ensures 'sale_project' is uninstalled,
# because that module introduces unwanted links between Sales and Projects
# which conflict with the Legal Practice Management logic.
'post_init_hook': 'post_init_hook'
}