Index: ssts-web/src/main/webapp/disinfectsystem/useRecord/tabs/tousseInstanceInfoTab.js =================================================================== diff -u -r19653 -r21141 --- ssts-web/src/main/webapp/disinfectsystem/useRecord/tabs/tousseInstanceInfoTab.js (.../tousseInstanceInfoTab.js) (revision 19653) +++ ssts-web/src/main/webapp/disinfectsystem/useRecord/tabs/tousseInstanceInfoTab.js (.../tousseInstanceInfoTab.js) (revision 21141) @@ -410,6 +410,20 @@ readOnly : true, cls : 'fieldReadOnlyNoRemove' }] + },{ + layout : 'form', + columnWidth : .5, + hidden : !sstsConfig.showWrapperField, + cls:'edit-part2-labelwidth', + items : [{ + id : 'wrapperPerson', + name : 'wrapperPerson', + xtype : 'textfield', + fieldLabel : '包装人', + anchor : '100%', + readOnly : true, + cls : 'fieldReadOnlyNoRemove' + }] }, { layout : 'form', columnWidth : .5, @@ -1385,7 +1399,11 @@ //装配记录 + var packingRecord = result.packingRecordJSON; top.Ext.getCmp('operatorPerson').setValue(instance.operator); //装配记录_配包人 + if(packingRecord){ + top.Ext.getCmp('wrapperPerson').setValue(packingRecord.wrapper); //装配记录_配包人 + } if(instance.operationTime!=null){ top.Ext.getCmp('operationTime').setValue(Ext.util.Format.date(new Date(instance.operationTime.time),'Y-m-d H:i:s'));//装配记录_装配时间 }