[fix]Filter using 'Not Equals' condition (#3571)

This commit is contained in:
Vishal Dhayagude 2017-06-28 14:40:27 +05:30 committed by Rushabh Mehta
parent 1767922b8d
commit 0dc4ba2c9e

View file

@ -215,7 +215,8 @@ frappe.ui.Filter = Class.extend({
? __("values separated by commas")
: __("use % as wildcard"))+'</div>');
} else {
me.set_field(me.field.df.parent, me.field.df.fieldname, null, condition);
//if condition selected after refresh
me.set_field(me.field.df.parent, me.field.df.fieldname, me.field.df.fieldtype, condition);
}
});