[fix] [minor] syntax error in quality inspection
This commit is contained in:
parent
deff57826a
commit
434f0a41bf
@ -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 }
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user