|
|
@@ -43,15 +43,17 @@ Ext.define('erp.view.desktop.BoardParamWindow',{
|
|
|
var item;
|
|
|
Ext.Array.each(globalParameters,function(param){
|
|
|
var inputType = param.inputMode;
|
|
|
- if('Radio'==inputType){
|
|
|
- item = me.getRadio(param);
|
|
|
- }else if('DropDownBox'==inputType){
|
|
|
- item = me.getComboBox(param);
|
|
|
- }else if('Manual'==inputType){
|
|
|
- item = me.getManualField(param);
|
|
|
+ if(param.type!='SQL'){
|
|
|
+ if('Radio'==inputType){
|
|
|
+ item = me.getRadio(param);
|
|
|
+ }else if('DropDownBox'==inputType){
|
|
|
+ item = me.getComboBox(param);
|
|
|
+ }else if('Manual'==inputType){
|
|
|
+ item = me.getManualField(param);
|
|
|
+ }
|
|
|
+ item.name = param.code;
|
|
|
+ items.push(item);
|
|
|
}
|
|
|
- item.name = param.code;
|
|
|
- items.push(item);
|
|
|
});
|
|
|
return items;
|
|
|
},
|