changed args to filters in get_query
diff --git a/accounts/doctype/account/account.js b/accounts/doctype/account/account.js
index 7738682..db50ff6 100644
--- a/accounts/doctype/account/account.js
+++ b/accounts/doctype/account/account.js
@@ -120,7 +120,7 @@
 	if (doc.master_type) {
 		return {
 			query: "accounts.doctype.account.account.get_master_name",
-			args: {	"master_type": doc.master_type }
+			filters: {	"master_type": doc.master_type }
 		}
 	}
 }
@@ -128,6 +128,6 @@
 cur_frm.fields_dict['parent_account'].get_query = function(doc) {
 	return {
 		query: "accounts.doctype.account.account.get_parent_account",
-		args: { "company": doc.company}
+		filters: { "company": doc.company}
 	}
 }
diff --git a/accounts/doctype/account/account.py b/accounts/doctype/account/account.py
index 0e3ace1..ac8339c 100644
--- a/accounts/doctype/account/account.py
+++ b/accounts/doctype/account/account.py
@@ -200,11 +200,11 @@
 
 		return " - ".join(parts)
 
-def get_master_name(doctype, txt, searchfield, start, page_len, args):
+def get_master_name(doctype, txt, searchfield, start, page_len, filters):
 	return webnotes.conn.sql("""select name from `tab%s` where name like '%%%s%%'""" %
-		(args["master_type"], txt), as_list=1)
+		(filters["master_type"], txt), as_list=1)
 		
-def get_parent_account(doctype, txt, searchfield, start, page_len, args):
+def get_parent_account(doctype, txt, searchfield, start, page_len, filters):
 	return webnotes.conn.sql("""select name from tabAccount 
 		where group_or_ledger = 'Group' and docstatus != 2 and company = '%s' 
-		and name like '%%%s%%'""" % (args["company"], txt))
+		and name like '%%%s%%'""" % (filters["company"], txt))
diff --git a/stock/utils.py b/stock/utils.py
index 3b98cf0..62c2a17 100644
--- a/stock/utils.py
+++ b/stock/utils.py
@@ -148,7 +148,7 @@
 		
 	return valid_serial_nos
 	
-def get_warehouse_list(doctype, txt, searchfield, start, page_len, args):
+def get_warehouse_list(doctype, txt, searchfield, start, page_len, filters):
 	"""used in search queries"""
 	wlist = []
 	for w in webnotes.conn.sql_list("""select name from tabWarehouse