Merge branch 'master' of github.com:webnotes/erpnext

This commit is contained in:
Anand Doshi 2013-07-24 12:11:21 +05:30
commit 396d40c34e

View File

@ -56,13 +56,13 @@ cur_frm.fields_dict['item_code'].get_query = function(doc, cdt, cdn) {
// Serial No based on item_code
cur_frm.fields_dict['item_serial_no'].get_query = function(doc, cdt, cdn) {
var filter = {};
if (doc.item_code)
filter:{
if (doc.item_code) {
filter = {
'item_code': doc.item_code,
'status': "In Store"
}
else
filter: { 'status': "In Store" }
} else
filter = { 'status': "In Store" }
return { filters: filter }
}