diff --git a/addons/document/__openerp__.py b/addons/document/__openerp__.py index 3dc14054b40..e3354efff0c 100644 --- a/addons/document/__openerp__.py +++ b/addons/document/__openerp__.py @@ -57,6 +57,7 @@ ATTENTION: ], 'demo': [ 'document_demo.xml','board_document_demo.xml'], 'test': ['test/document_test2.yml'], + 'js': ['static/src/js/document.js'], 'installable': True, 'auto_install': False, 'images': ['images/1_directories.jpeg','images/2_storage_media.jpeg','images/3_directories_structure.jpeg'], diff --git a/addons/document/static/src/js/document.js b/addons/document/static/src/js/document.js new file mode 100644 index 00000000000..2dde2696c81 --- /dev/null +++ b/addons/document/static/src/js/document.js @@ -0,0 +1,10 @@ +openerp.document = function (instance) { + _t = instance.web._t; + instance.web.Sidebar.include({ + init : function(){ + this._super.apply(this, arguments); + this.sections.splice(1, 0, { 'name' : 'files', 'label' : _t('Attachment(s)'), }); + this.items['files'] = []; + } + }); +}; \ No newline at end of file