Index: ssts-web/src/main/webapp/disinfectsystem/print/print.js =================================================================== diff -u -r30543 -r30745 --- ssts-web/src/main/webapp/disinfectsystem/print/print.js (.../print.js) (revision 30543) +++ ssts-web/src/main/webapp/disinfectsystem/print/print.js (.../print.js) (revision 30745) @@ -4228,7 +4228,7 @@ var barcode = obj.barcode; if(isIE()){ var url = WWWROOT + "/disinfectSystem/printBarcodeAction!printBarcodeImage.do?barcode=" + barcode+"&codeType="+getBarcodeCodeType(obj.codeType); - if (typeof(obj.barcodeImgWidth) != "undefined" && typeof(obj.barcodeImgWidth) != "undefined"){ + if (typeof(sstsConfig.barcodeImgWidth) != "undefined" && typeof(sstsConfig.barcodeImgHeight) != "undefined"){ url += "&barcodeImgWidth=" + sstsConfig.barcodeImgWidth + "&barcodeImgHeight=" + sstsConfig.barcodeImgHeight; } @@ -4238,7 +4238,7 @@ var responseText; var url = WWWROOT + "/disinfectSystem/printBarcodeAction!printBarcodeImage.do"; var parm = "barcode="+barcode+"&codeType="+getBarcodeCodeType(obj.codeType)+"&returnFormat=base64"; - if (typeof(obj.barcodeImgWidth) != "undefined" && typeof(obj.barcodeImgWidth) != "undefined"){ + if (typeof(sstsConfig.barcodeImgWidth) != "undefined" && typeof(sstsConfig.barcodeImgHeight) != "undefined"){ parm += "&barcodeImgWidth=" + sstsConfig.barcodeImgWidth + "&barcodeImgHeight=" + sstsConfig.barcodeImgHeight; } xmlobj.open("POST", url, false);