Knowledge fixed as base module for knowledge management system

reamed.rst added
version number corrected
res_config.py is now  respecting the new odoo API
This commit is contained in:
Gervais Naoussi
2015-10-23 12:18:36 -04:00
parent 5426101c23
commit 21f5155fd9
4 changed files with 112 additions and 34 deletions

View File

@@ -21,14 +21,13 @@
from openerp import models, fields
class knowledge_config_settings(models.TransientModel):
class knowledgeConfigSettings(models.TransientModel):
_name = 'knowledge.config.settings'
_inherit = 'res.config.settings'
_fields = {
'module_document': fields.boolean('Manage documents',
module_document = fields.Boolean('Manage documents',
help='Document indexation, full text search of attachements.\n'
'-This installs the module document.'),
}
'-This installs the module document.')
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: