forked from OCA/connector-cmis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
88 lines (76 loc) · 2.74 KB
/
__manifest__.py
File metadata and controls
88 lines (76 loc) · 2.74 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright (C) 2014 Savoir-faire Linux
# (<http://www.savoirfairelinux.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'CMIS Write',
'version': '7.0.0.1.0',
'category': 'Knowledge Management',
'summary': 'Create Document in DMS from Odoo/OpenERP',
'description': """
Add Documents from Odoo/OpenERP
===============================
This module allows you to store Odoo/OpenERP document in the DMS repository.
Configuration
=============
* Create a new CMIS backend with the host, login and password.
* Configure the path in the repository where documents will be dropped.
By default, it uses the home directory of the user.
Usage
=====
* On one Odoo/OpenERP record, click "Add document".
* Upload your documents
* Uploaded documents will be enqueued for storage in the DMS
(Document Management System)
Add Metadata
============
To manage a custom aspect using CMIS (and all the other supported ways)
you have to:
* Define a new custom model configuring Alfresco. To do this I suggest you
http://wiki.alfresco.com/wiki/Step-By-Step:_Creating_A_Custom_Model.
* Add the custom aspect to the document you upload or create in Alfresco.
Using CMIS I suggest you:
http://docs.alfresco.com/4.1/index.jsp?topic=%2Fcom.alfresco.enterprise.doc%2Fconcepts%2Fopencmis-ext-adding.html.
* Set the custom property in the way you probably know using CMIS.
Contributors
------------
* El Hadji Dem (elhadji.dem@savoirfairelinux.com)
""",
'author': 'Savoir-faire Linux',
'website': 'www.savoirfairelinux.com',
'license': 'AGPL-3',
'depends': [
'document',
'cmis',
],
'data': [
'document_view.xml',
'metadata_view.xml',
'security/ir.model.access.csv',
],
'js': [
'static/src/js/document.js'
],
'qweb': [],
'test': [],
'demo': [],
'installable': False,
'auto_install': False,
}