调用现有的odoo 9 pos弹出窗口

时间:2017-02-07 06:18:07

标签: jquery odoo-9 point-of-sale

在odoo的9.0c版本中,特别是在销售点。

如何调用现有的弹出式窗口?我知道这个过程的方法与版本8.0c非常不同。

在8.0c我使用:self.pos_widget.screen_selector.show_popup(“popup_name”);

在9.0中如何调用click_username?

1 个答案:

答案 0 :(得分:0)

您可以在odoo v9中调用这样的基本弹出窗口。

 this.gui.show_popup('confirm',{});

在第二个参数中,您可以指定标题,正文等。

例如

        this.gui.show_popup('confirm',{
            'title': _t('Destroy Current Order ?'),
            'body': _t('You will lose any data associated with the current order'),
            confirm: function(){
                self.pos.delete_current_order();
            },
        });