Index: ssts-web/src/main/webapp/disinfectsystem/useRecord/useRecordForm.js =================================================================== diff -u -r15724 -r15776 --- ssts-web/src/main/webapp/disinfectsystem/useRecord/useRecordForm.js (.../useRecordForm.js) (revision 15724) +++ ssts-web/src/main/webapp/disinfectsystem/useRecord/useRecordForm.js (.../useRecordForm.js) (revision 15776) @@ -326,7 +326,7 @@ showResult('请正确填写表单各值'); return false; } - if(top.Ext.getCmp('treatmentNum').getValue() == '' && top.Ext.getCmp('hospitalNum').getValue() == '' && top.Ext.getCmp('patientName').getValue() == ''){ + if(!sstsConfig.noInputTreatmentNumOrHospitalNum && top.Ext.getCmp('treatmentNum').getValue() == '' && top.Ext.getCmp('hospitalNum').getValue() == '' && top.Ext.getCmp('patientName').getValue() == ''){ showResult('请输入诊疗号或者住院号或者病人姓名'); return false; } @@ -349,7 +349,7 @@ btObj.enable(); return false; } - if(top.Ext.getCmp('treatmentNum').getValue() == '' && top.Ext.getCmp('hospitalNum').getValue() == '' && top.Ext.getCmp('patientName').getValue() == ''){ + if(!sstsConfig.noInputTreatmentNumOrHospitalNum && top.Ext.getCmp('treatmentNum').getValue() == '' && top.Ext.getCmp('hospitalNum').getValue() == '' && top.Ext.getCmp('patientName').getValue() == ''){ showResult('请输入诊疗号或者住院号或者病人姓名'); btObj.enable(); return false; Index: ssts-web/src/main/webapp/disinfectsystem/config/hdqrmyy/config.js =================================================================== diff -u -r14676 -r15776 --- ssts-web/src/main/webapp/disinfectsystem/config/hdqrmyy/config.js (.../config.js) (revision 14676) +++ ssts-web/src/main/webapp/disinfectsystem/config/hdqrmyy/config.js (.../config.js) (revision 15776) @@ -55,5 +55,7 @@ //金额的小数位数 moneyDigitCount:4, //回收界面,标识牌通知方式:1弹出提示框,2语音播报,3提示框和语音,其他值无操作 - idCardUseAmountNoticeType:1 + idCardUseAmountNoticeType:1, + //录入使用记录时,"诊疗号"、"住院号"、"病人姓名"是否都可以不填:为true是可以不填,为false或者没配则三个至少填一个 + noInputTreatmentNumOrHospitalNum:true } \ No newline at end of file