返回从JS到xml的新模型结果

时间:2017-02-04 10:23:09

标签: javascript python xml odoo-8 odoo-10

我试图从python函数中获取值并将该值赋给xml coulmn,

在xml中调用的JS函数:

  var Users = new openerp.web.Model('res.users');
                var im = new openerp.im_chat.InstantMessaging(self);
                Users.call('has_group', ['base.group_user']).done(function(is_employee) {
                        alert(is_employee);
                        return is_employee;
                });

我如何归还" is_employee"值到xml字段?现在它总是在字段中显示未定义,但警告打印值。请任何人帮助我

0 个答案:

没有答案