odoo - 如何在视图中显示上下文?
odoo - How to show context in view?
我觉得应该很简单
我只想在字段中显示上下文。
例如:
<span>the active_id is {context.get('active_id', false)}</span>
或
<button string="the active_id is: {context.get('active_id',false)}" />
我花了几天时间寻找这个,但没有找到答案。任何帮助将不胜感激。谢谢
您必须在模型定义中添加此字段,例如:
context_active_id = fields.Char(default=lambda self: self.env.context.get('active_id', False), store=False, readonly=True)
并将该字段添加到视图中。
<field name='context_active_id' />
我觉得应该很简单
我只想在字段中显示上下文。
例如:
<span>the active_id is {context.get('active_id', false)}</span>
或
<button string="the active_id is: {context.get('active_id',false)}" />
我花了几天时间寻找这个,但没有找到答案。任何帮助将不胜感激。谢谢
您必须在模型定义中添加此字段,例如:
context_active_id = fields.Char(default=lambda self: self.env.context.get('active_id', False), store=False, readonly=True)
并将该字段添加到视图中。
<field name='context_active_id' />