'搜索更多'从列表视图到OpenERP中的看板视图中的many2one字段中查看

时间:2014-05-07 05:19:53

标签: javascript openerp many-to-one

'搜索更多...' OpenERP中many2one字段中的选项显示列表视图。如何将其更改为看板视图?现在代码是这样的。

 // search more... if more results that max
        if (values.length > self.limit) {
            values = values.slice(0, self.limit);
            values.push({
                label: _t("Search More..."),
                action: function() {
                    dataset.name_search(search_val, self.build_domain(), 'ilike', 160).done(function(data) {
                        self._search_create_popup("search", data);
                    });
                },
                classname: 'oe_m2o_dropdown_option'
            });
        }

0 个答案:

没有答案