Index: ssts-web/src/main/webapp/disinfectsystem/basedatamanager/rinser/rinserForm.js =================================================================== diff -u -r37453 -r37461 --- ssts-web/src/main/webapp/disinfectsystem/basedatamanager/rinser/rinserForm.js (.../rinserForm.js) (revision 37453) +++ ssts-web/src/main/webapp/disinfectsystem/basedatamanager/rinser/rinserForm.js (.../rinserForm.js) (revision 37461) @@ -423,28 +423,31 @@ id : 'contact', anchor : '95%' }, { - xtype:'hidden', + columnWidth : 0.5, + layout : 'form', hidden:!sstsConfig.enableRinserGroupFunction, - id:'rinserGroupId', - name:'rinserGroupId' - }, { - xtype : 'combo', - fieldLabel : "清洗机分组", - valueField : 'id', - displayField : 'name', - hidden:!sstsConfig.enableRinserGroupFunction, - store : rinserGroupStore, - forceSelection : true, - triggerAction : 'all', - name : "rinserGroupName", - id : "rinserGroupName", - anchor : '95%', - editable : false, - listeners : { - select : function(combo, record, index) { - top.Ext.getCmp('rinserGroupId').setValue((record.data.id)); + items:[{ + xtype:'hidden', + id:'rinserGroupId', + name:'rinserGroupId' + },{ + xtype : 'combo', + fieldLabel : "清洗机分组", + valueField : 'id', + displayField : 'name', + store : rinserGroupStore, + forceSelection : true, + triggerAction : 'all', + name : "rinserGroupName", + id : "rinserGroupName", + anchor : '95%', + editable : false, + listeners : { + select : function(combo, record, index) { + top.Ext.getCmp('rinserGroupId').setValue((record.data.id)); + } } - } + }] }, { xtype : 'textfield', fieldLabel : "电子邮件", Index: ssts-web/src/main/webapp/js/common.js =================================================================== diff -u -r37453 -r37461 --- ssts-web/src/main/webapp/js/common.js (.../common.js) (revision 37453) +++ ssts-web/src/main/webapp/js/common.js (.../common.js) (revision 37461) @@ -2235,6 +2235,7 @@ if (v == '总价' && !record.data.id) { //如果这是最后一行(汇计总金额的)就不给他加修改的链接(陈家儒改) return v; } + v = v.replace(/\"/g, """); // 双引号转义处理 return "" + v + ""; }