如何在 OpenERP 中添加消息到状态
我有一个非常简单的问题。如何在状态栏上添加自己的消息?
I have a very simple question. How to add own message to state on status bar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个非常简单的问题。如何在状态栏上添加自己的消息?
I have a very simple question. How to add own message to state on status bar?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
看起来客户端中的
form
类有一个message_state()
方法,可以在状态栏中显示消息。如果您查看 client/bin/modules/gui/window/form.py 文件,您可以找到多个调用。我没有看到任何简单的方法来从标准模块内设置该消息,因此您可能必须破解客户端代码。如果您想在常规模块代码中显示消息,我认为您会遇到弹出警告对话框。
It looks like the
form
class in the client has amessage_state()
method that displays a message in the status bar. If you look through theclient/bin/modules/gui/window/form.py
file, you can find several calls. I didn't see any easy way to set that message from within a standard module, so you might have to hack the client code.If you want to display a message from within regular module code, I think you're stuck with a pop-up warning dialog.
嗯,你可以通过改变 form.mako 并了解 mochikit 来自定义表单上的消息。
Well U can custom message on form with changes in form.mako with understanding of mochikit.