Index: ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js =================================================================== diff -u -r30494 -r30495 --- ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js (.../packingView.js) (revision 30494) +++ ssts-web/src/main/webapp/disinfectsystem/packing/packingView.js (.../packingView.js) (revision 30495) @@ -4487,7 +4487,7 @@ allowModifyPackageType:taskVO.allowModifyPackageType, errorRemark:taskVO.errorRemark, damageRemark:taskVO.damageRemark, - urgentLevel:taskVO.urgentLevel, + urgentLevel:taskVO.urgentLevel || '', serialNumber:'', recyclingItemRemark:'', cleaned:taskVO.cleaned, @@ -4545,6 +4545,7 @@ var taskType = task.taskType; var supplierName = task.supplierName; var packageSize = task.packageSize; + var urgentLevel = task.urgentLevel; var maxAmount = task.maxAmount; if(task.tousseType == '外来器械包'){ haveForeignTousseNode = true; @@ -4579,6 +4580,9 @@ parentNode.appendChild(childNode); var pNewAmount = parentNode.get('amount') + amount; var purgentAmount = parseInt(parentNode.get('urgentAmount')) + parseInt(urgentAmount); + if(parentNode.get('urgentLevel') == '' ){ + parentNode.set('urgentLevel',urgentLevel); + } parentNode.set('amount',pNewAmount); parentNode.set('urgentAmount',purgentAmount); parentNode.set('unPackingAmount',pNewAmount);