可以通过以下步骤实现:
from odoo import models, fields
class PosScreen(models.Model):
_inherit = 'pos.config'
current_screen = fields.Char(string='Current Screen', compute='_compute_current_screen')
def _compute_current_screen(self):
for config in self:
config.current_screen = self.env.context.get('screen_name', '')
在上述代码中,我们扩展了pos.config
模型,并添加了一个名为current_screen
的字段。该字段的值通过_compute_current_screen
方法计算得出,该方法从上下文中获取screen_name
参数的值。
<template id="pos_screen_template" inherit_id="point_of_sale.template">
<xpath expr="//div[@class='pos-content']" position="inside">
<div class="pos-screen-name" t-esc="config.current_screen"/>
</xpath>
</template>
在上述代码中,我们通过模板继承的方式,在POS界面的pos-content
元素内添加了一个名为pos-screen-name
的div
元素,其中使用了config.current_screen
来显示当前屏幕名称。
推荐的腾讯云相关产品和产品介绍链接地址:
请注意,以上链接仅供参考,具体的产品选择应根据实际需求和情况进行评估。
领取专属 10元无门槛券
手把手带您无忧上云