bzr revid: rgaopenerp-20120925070743-5wg90i03onym8826
This commit is contained in:
RGA(OpenERP) 2012-09-25 12:37:43 +05:30
parent c21850bcdd
commit 2fd06a53de
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
openerp.document = function (instance) {
_t = instance.web._t;
instance.web.SidebarAttachement =instance.web.Sidebar.include({
instance.web.Sidebar.include({
init : function(){
this._super.apply(this, arguments);
this.sections. splice(1, 0, { 'name' : 'files', 'label' : _t('Attachment(s)'), });
this.sections.splice(1, 0, { 'name' : 'files', 'label' : _t('Attachment(s)'), });
this.items['files'] = [];
}
});