-2

请查看屏幕截图,并在帮助黄色框中告知如何删除红色文本('object:: res users Field:: new_password')

4

1 回答 1

3

注意:我假设您正在运行 OpenERP v6。

找到文件openerp.ui.tips.js,它应该在您的 Web 客户端文件夹中。如果您在 Linux 下,您可以通过在终端中键入以下命令来找到它:

sudo find / -type f -name 'openerp.ui.tips.js'

接下来,在您选择的编辑器中打开文件并找到以下行:

...

this.toolTitle = SPAN({'class': 'tipTitle'});
this.toolText = P({'class': 'tipText'});
this.toolModel = SPAN({'class': 'tipExtra'});
this.toolField = SPAN({'class': 'tipExtra'});
this. modelTitle = SPAN({'style': 'font-weight:bold;'}, _('Object')+' :: ')
this.fieldTitle = SPAN({'style': 'font-weight:bold;'}, _('Field')+' :: ')

...

只需在工具提示中注释您不需要的那些行并将它们替换为空字符串即可。在您的情况下,您必须执行以下操作:

...

this.toolTitle = SPAN({'class': 'tipTitle'});
this.toolText = P({'class': 'tipText'});
this.toolModel = '';//SPAN({'class': 'tipExtra'});
this.toolField = '';//SPAN({'class': 'tipExtra'});
this. modelTitle = '';//SPAN({'style': 'font-weight:bold;'}, _('Object')+' :: ')
this.fieldTitle = '';//SPAN({'style': 'font-weight:bold;'}, _('Field')+' :: ')

...

重新启动 Web 客户端。问题解决了。

PS: OpenERP 中的红色文本工具提示真的很有帮助,尤其是当您根据自己的需要自定义它时。在决定隐藏它们之前请三思而后行。

于 2012-02-03T19:36:08.097 回答