-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path__manifest__.py
More file actions
executable file
·62 lines (59 loc) · 2.03 KB
/
Copy path__manifest__.py
File metadata and controls
executable file
·62 lines (59 loc) · 2.03 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8 -*-
{
'name': 'Document hub',
'version': '17.0.0.0.1',
'author': 'Daniel Demedziuk',
'license': 'GPL-2',
'sequence': 55,
'category': 'Customizations',
'summary': 'Advanced document management system for Odoo Community',
'description': """
Document hub
==================
An advanced document management module for Odoo 17 Community, inspired by the Odoo Enterprise "Documents" app. Enables centralized storage, categorization, sharing, and automation of document workflows within your company.
Key features:
- Store and organize files in folder structures and tags
- Share documents with users and groups
- Departmental document centralization (e.g., HR, Finance, Projects)
- Automatic tagging and classification on import
- Document versioning and change history
- Integration with other modules (Projects, Sales Orders, Contacts)
- Access rights per folder/tag
- Built-in preview for PDFs, images, videos
- Document template creation and management
- Advanced search and filtering
- Workflow automation: task assignment, notifications, validations
- Trash bin with restore capability
- Bulk operations on documents
- Extensions: OCR for text recognition from scans
- Extensions: e-signature integration (e.g., OCA Sign)
- Extensions: automatic import from email or network folders
This module is fully open source under the GPL-2 license.
""",
'depends': [
'base',
'mail',
'project',
'sale_offer',
],
'data': [
'data/document_sequence.xml',
'data/folders_data.xml',
'data/tags_data.xml',
'data/cron_data.xml',
'security/document_hub_security.xml',
'security/ir.model.access.csv',
'views/project_views.xml',
'views/document_hub_views.xml',
'views/config_views.xml',
'views/res_config_settings_views.xml',
],
'assets': {
'web.assets_backend': [
'document_hub/static/src/**/*',
],
},
'auto_install': False,
'application': True,
'installable': True,
}