Skip to content

Commit 63aa8a8

Browse files
committed
[MIG] document_knowledge: Migration to 18.0
1 parent 154fcbd commit 63aa8a8

File tree

9 files changed

+11
-99
lines changed

9 files changed

+11
-99
lines changed

document_knowledge/README.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,13 @@ Contributors
110110
Trobz
111111

112112
- Dung Tran <[email protected]>
113+
- Khoi (Kien Kim) [email protected]
113114

114115
Other credits
115116
-------------
116117

117-
The development of this module has been financially supported by:
118+
The migration of this module from 17.0 to 18.0 was financially supported
119+
by:
118120

119121
- Camptocamp
120122

document_knowledge/__manifest__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
33
{
44
"name": "Documents Knowledge",
5-
"version": "17.0.1.0.0",
5+
"version": "18.0.1.0.0",
66
"author": "OpenERP SA,"
77
"MONK Software, "
88
"Tecnativa, "
@@ -17,7 +17,6 @@
1717
"security/document_knowledge_security.xml",
1818
"data/res_users.xml",
1919
"views/document_knowledge.xml",
20-
"views/res_config.xml",
2120
],
2221
"demo": ["demo/document_knowledge.xml"],
2322
"installable": True,

document_knowledge/models/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
33

44
from . import ir_attachment
5-
from . import res_config

document_knowledge/models/res_config.py

-33
This file was deleted.

document_knowledge/readme/CONTRIBUTORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
Trobz
1515

1616
- Dung Tran \<<[email protected]>\>
17+
- Khoi (Kien Kim) <[email protected]>

document_knowledge/readme/CREDITS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
The development of this module has been financially supported by:
1+
The migration of this module from 17.0 to 18.0 was financially supported by:
22

33
- Camptocamp

document_knowledge/static/description/index.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -458,11 +458,13 @@ <h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
458458
<p>Trobz</p>
459459
<ul class="simple">
460460
<li>Dung Tran &lt;<a class="reference external" href="mailto:dungtd&#64;trobz.com">dungtd&#64;trobz.com</a>&gt;</li>
461+
<li>Khoi (Kien Kim) <a class="reference external" href="mailto:khoikk&#64;trobz.com">khoikk&#64;trobz.com</a></li>
461462
</ul>
462463
</div>
463464
<div class="section" id="other-credits">
464465
<h2><a class="toc-backref" href="#toc-entry-7">Other credits</a></h2>
465-
<p>The development of this module has been financially supported by:</p>
466+
<p>The migration of this module from 17.0 to 18.0 was financially supported
467+
by:</p>
466468
<ul class="simple">
467469
<li>Camptocamp</li>
468470
</ul>

document_knowledge/views/document_knowledge.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
<odoo>
33
<record id="knowledge_action_documents" model="ir.actions.act_window">
44
<field name="name">Documents</field>
5+
<field name="path">documents</field>
56
<field name="res_model">ir.attachment</field>
6-
<field name="view_mode">kanban,tree,form</field>
7+
<field name="view_mode">kanban,list,form</field>
78
<field name="context">{'search_default_user_documents': True}</field>
89
</record>
910
<record id="ir_attachment_view_user_documents" model="ir.ui.view">

document_knowledge/views/res_config.xml

-59
This file was deleted.

0 commit comments

Comments
 (0)