Browse Source

Removed Warehouse Requirement for SerialNo Listing

Removed the requirement that Warehouse has to be assigned for Serial Number to appear in the listing.
develop
bohlian 9 years ago
parent
commit
ff1ab26088
  1. 3
      erpnext/support/doctype/warranty_claim/warranty_claim.js

3
erpnext/support/doctype/warranty_claim/warranty_claim.js

@ -50,8 +50,7 @@ cur_frm.fields_dict['contact_person'].get_query = function(doc, cdt, cdn) {
cur_frm.fields_dict['serial_no'].get_query = function(doc, cdt, cdn) { cur_frm.fields_dict['serial_no'].get_query = function(doc, cdt, cdn) {
var cond = []; var cond = [];
var filter = [ var filter = [
['Serial No', 'docstatus', '!=', 2], ['Serial No', 'docstatus', '!=', 2]
['Serial No', 'warehouse', '=', ""]
]; ];
if(doc.item_code) { if(doc.item_code) {
cond = ['Serial No', 'item_code', '=', doc.item_code]; cond = ['Serial No', 'item_code', '=', doc.item_code];

Loading…
Cancel
Save