我试图使用这个Odoo插件:
https://www.odoo.com/apps/modules/8.0/warning_box/
https://github.com/ingadhoc/odoo-addons/tree/8.0/warning_box
显示一些消息。
安装页面说:
用法返回self.pool.get(' warning_box')。info(cr,uid,title =' The 标题',消息='消息')
由于代码是用V8.0风格编写的,我认为这是错误的。无论如何我已经尝试了它,它给出了关于cr和uid的错误。
然后我尝试了这样:
self.env['warning_box'].info(self, title='The title', message='the message')
这给了我这个错误:
TypeError:info()获得了关键字参数' title'
的多个值
这是Odoo插件的python代码:
WARNING_TYPES = [('warning', 'Warning'), ('info', 'Information'), ('error', 'Error')]
class warning_box(models.TransientModel):
_name = 'warning_box'
_description = 'warning_box'
_req_name = 'title'
type = fields.Selection(WARNING_TYPES, string='Type', readonly=True)
title = fields.Char(string="Title", size=100, readonly=True)
message = fields.Text(string="Message", readonly=True)
@api.multi
def message_action(self):
self.ensure_one
message_type = [t[1]for t in WARNING_TYPES if self.type == t[0]][0]
res = {
'name': '%s: %s' % (_(message_type), _(self.title)),
'view_type': 'form',
'view_mode': 'form',
'view_id': self.env['ir.model.data'].xmlid_to_res_id(
'warning_box.warning_box_form'),
'res_model': 'warning_box',
'domain': [],
'context': self._context,
'type': 'ir.actions.act_window',
'target': 'new',
'res_id': self.id
}
return res
@api.model
def warning(self, title, message):
record = self.create({'title': title, 'message': message, 'type': 'warning'})
return record.message_action()
@api.model
def info(self, title, message):
record = self.create({'title': title, 'message': message, 'type': 'info'})
return record.message_action()
@api.model
def error(self, title, message):
record = self.create({'title': title, 'message': message, 'type': 'error'})
return record.message_action()
我一直在查找错误并找到了这两条信息:
class method generates "TypeError: ... got multiple values for keyword argument ..."
TypeError: create() got multiple values for keyword argument 'context'
我已经尝试了解它并将其应用到我的情况中,但我无法让它发挥作用...... 任何人都可以告诉我这段代码有什么问题吗?
编辑Forvas:
我现在调用这个函数:
return self.env['warning_box'].error(title='The title', message='the message')
这并没有给出上述代码的任何错误。
现在我已经像你说的那样改变了def message_action。 为此:
form_view_id = self.env.ref(
'your_module_name.your_form_view_xml_id').id
我用过:
form_view_id = self.env.ref(
'warning_box_git.warning_box_form').id
为了确保,您的意思是模块名称或型号名称吗? 我的模型(类)是warning_box,我的模块名是warning_box_git(模块文件夹的名称)。我这样做了吗?
无论哪种方式,我都会收到此错误:
AttributeError:' warning_box'对象没有属性'错误'
这是我的XML:
<openerp>
<data>
<record id="warning_box_form" model="ir.ui.view">
<field name="name">warning_box.form</field>
<field name="model">warning_box</field>
<field eval="20" name="priority"/>
<field name="arch" type="xml">
<form string="Warning">
<field name="message" nolabel="1"/>
<footer>
<button string="OK" class="oe_highlight" special="cancel"/>
</footer>
</form>
</field>
</record>
<record model="ir.actions.act_window" id="action_warning_box">
<field name="name">Warning Box</field>
<field name="res_model">warning_box</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="view_id" ref="warning_box_form" />
<field name="target">new</field>
</record>
</data>
</openerp>
您是否知道如何解决错误?
为Forvas编辑2: 我犯了一个愚蠢的缩进错误。那个错误现在消失了。 但是,它仍然没有显示任何弹出窗口?
答案 0 :(得分:0)
您无法将self
作为参数传递。
self.env['warning_box'].info(title='The title', message='the message')
你&#34;通过&#34;当你从self
调用模型时。
修改强>
尝试使用下一个代码:
@api.multi
def message_action(self):
self.ensure_one()
message_type = [t[1]for t in WARNING_TYPES if self.type == t[0]][0]
form_view_id = self.env.ref(
'your_module_name.your_form_view_xml_id').id
return {
'name': '%s: %s' % (_(message_type), _(self.title)),
'view_type': 'form',
'view_mode': 'form',
'views': [(form_view_id, 'form'), ],
'res_model': 'warning_box',
'context': self._context,
'type': 'ir.actions.act_window',
'target': 'new',
'flags': {'action_buttons': True},
}