[CHG] module name: knowledge -> document_knowledge

In v16 Odoo has its own knowledge module
This commit is contained in:
mle
2022-10-19 12:00:29 +02:00
parent 66914c9d13
commit 042c059a8c
11 changed files with 22 additions and 16 deletions

View File

@@ -4,7 +4,7 @@
from odoo import fields, models
class KnowledgeConfigSettings(models.TransientModel):
class DocumentKnowledgeConfigSettings(models.TransientModel):
_inherit = "res.config.settings"
module_attachment_indexation = fields.Boolean(
@@ -16,8 +16,8 @@ class KnowledgeConfigSettings(models.TransientModel):
group_ir_attachment_user = fields.Boolean(
string="Central access to Documents",
help="When you set this field all users will be able to manage "
"attachments centrally, from the Knowledge/Documents menu.",
implied_group="knowledge.group_ir_attachment_user",
"attachments centrally, from the Document Knowledge/Documents menu.",
implied_group="document_knowledge.group_ir_attachment_user",
)
module_document_page = fields.Boolean(