Index: ssts-web/src/main/webapp/disinfectsystem/sterilizationmanager/sterilizationrecord/foreignProxyDisinfectionView.js =================================================================== diff -u -r15494 -r15497 --- ssts-web/src/main/webapp/disinfectsystem/sterilizationmanager/sterilizationrecord/foreignProxyDisinfectionView.js (.../foreignProxyDisinfectionView.js) (revision 15494) +++ ssts-web/src/main/webapp/disinfectsystem/sterilizationmanager/sterilizationrecord/foreignProxyDisinfectionView.js (.../foreignProxyDisinfectionView.js) (revision 15497) @@ -798,10 +798,6 @@ id : 'serialNumber' },{ xtype : 'hidden', - name : 'applicant', - id : 'applicant' - },{ - xtype : 'hidden', name : 'itemIds', id : 'itemIds' },{ @@ -950,6 +946,28 @@ } } }] + },{ + columnWidth : .5, + layout : 'form', + labelWidth : 70, + items : [{ + xtype : 'combo', + fieldLabel : '申请人', + id : 'applicant', + name : 'applicant', + queryParam : 'spell', + minChars : 0, + valueField : 'fullName', + displayField : 'fullName', + store : departUsersStore, + forceSelection : true, + lazyInit : true, + triggerAction : 'all', + hideTrigger : false, + typeAhead : false, + allowBlank : false, + anchor : '100%' + }] }/*,{ columnWidth : .5, layout : 'form', @@ -1542,6 +1560,7 @@ top.Ext.getCmp('arrivedTimeStr').setValue(formatDateYear(action.result.data.arrivedTime)); top.Ext.getCmp('scheduleTimeStr').setValue(formatDateYear(action.result.data.scheduleTime)); top.Ext.getCmp('maker').setValue(action.result.data.maker); + top.Ext.getCmp('applicant').setValue(action.result.data.applicant); top.Ext.getCmp('assistant').setValue(action.result.data.assistant); if(!action.result.isEditable){ top.Ext.getCmp('saveBtn').disable(); @@ -2016,6 +2035,7 @@ var columns = [ {header : "流水号",width : 90,dataIndex : 'serialNumber', renderer : modifyRecord}, + {header : "申请人",width : 80,dataIndex : 'applicant'}, {header : "灭菌员",width : 80,dataIndex : 'sterilizationUser',hidden : sstsConfig.hiddenForeignProxyPartElement}, {header : "申请科室",width : 150,dataIndex : 'depart'}, {header : "器械包数量",width : 80,dataIndex : 'tousseAmount'},