[FIX] it turns out the default operator is weirdly named 'default_operator', not 'die_walküre'. Weird

bzr revid: xmo@openerp.com-20110324174230-nfv342t6aysrkkb5
This commit is contained in:
Xavier Morel 2011-03-24 18:42:30 +01:00
parent cff572c9c4
commit 10d34d936a
1 changed files with 1 additions and 1 deletions

View File

@ -666,7 +666,7 @@ openerp.base.search.Field = openerp.base.search.Input.extend({
if (!this.attrs['filter_domain']) {
return [
this.attrs.name,
this.attrs.operator || this.operator,
this.attrs.operator || this.default_operator,
this.get_value()
];
}