Index: ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js =================================================================== diff -u -r36100 -r36132 --- ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js (.../packingView.js) (revision 36100) +++ ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js (.../packingView.js) (revision 36132) @@ -1311,8 +1311,10 @@ sortable: true, hidden: !(sstsConfig.enableUrgentFunction && sstsConfig.enableExtendedInformationOfUrgentFunction && sstsConfig.recyclingOnlyInTheCorrespondingApplicationFormWhenScanningUniqueBarcode), renderer: function (value, metaData, record, rowIdx, colIdx, store) { - if(typeof record.data.urgentAdditionalInfo == 'object'){ + if (record.data.urgentAdditionalInfo && record.data.urgentAdditionalInfo !== '') { return record.data.urgentAdditionalInfo.expectUseTimeStr || ''; + } else { + return null; } } } @@ -1325,8 +1327,10 @@ sortable: true, hidden: !(sstsConfig.enableUrgentFunction && sstsConfig.enableExtendedInformationOfUrgentFunction && sstsConfig.recyclingOnlyInTheCorrespondingApplicationFormWhenScanningUniqueBarcode), renderer: function (value, metaData, record, rowIdx, colIdx, store) { - if(typeof record.data.urgentAdditionalInfo == 'object'){ + if (record.data.urgentAdditionalInfo && record.data.urgentAdditionalInfo !== '') { return record.data.urgentAdditionalInfo.urgentContactFullName || ''; + } else { + return null; } } }