diff --git a/WebContent/ProductManage/ParameterConfig/ParameterInfo.jsp b/WebContent/ProductManage/ParameterConfig/ParameterInfo.jsp index bebe2fbb6..9d2571af7 100644 --- a/WebContent/ProductManage/ParameterConfig/ParameterInfo.jsp +++ b/WebContent/ProductManage/ParameterConfig/ParameterInfo.jsp @@ -100,7 +100,7 @@ include file="/Frame/resources/include/ui/include_info.jspf"%> $(this).parent().show(); } } - else if("2"==dataType || "5"==dataType || "6"==dataType){ + else if("2"==dataType || "5"==dataType || "6"==dataType || "7"==dataType){ if(this.value=="MINIMUMVALUE" || this.value=="MAXIMUMVALUE" || this.value=="VALUE"){ $(this).parent().show(); } diff --git a/WebContent/WEB-INF/etc/app/component/component-config.xml b/WebContent/WEB-INF/etc/app/component/component-config.xml index 9382685eb..19a14f621 100644 --- a/WebContent/WEB-INF/etc/app/component/component-config.xml +++ b/WebContent/WEB-INF/etc/app/component/component-config.xml @@ -1097,7 +1097,7 @@ - + diff --git a/WebContent/WEB-INF/etc/app/component/component-parameter-config.xml b/WebContent/WEB-INF/etc/app/component/component-parameter-config.xml index a9d9d95c3..493e3df6d 100644 --- a/WebContent/WEB-INF/etc/app/component/component-parameter-config.xml +++ b/WebContent/WEB-INF/etc/app/component/component-parameter-config.xml @@ -156,7 +156,7 @@ - + diff --git a/src_prd/com/amarsoft/app/als/businesscomponent/config/processor/BusinessComponentRuleDW.java b/src_prd/com/amarsoft/app/als/businesscomponent/config/processor/BusinessComponentRuleDW.java index 1cdeac6a1..dfa145f53 100644 --- a/src_prd/com/amarsoft/app/als/businesscomponent/config/processor/BusinessComponentRuleDW.java +++ b/src_prd/com/amarsoft/app/als/businesscomponent/config/processor/BusinessComponentRuleDW.java @@ -95,9 +95,11 @@ public class BusinessComponentRuleDW implements ObjectWindowCreator{ doTemp.setCheckFormat(colName, "5"); else if("6".equals(dataType)) doTemp.setCheckFormat(colName, "2"); + else if("7".equals(dataType)) + doTemp.setCheckFormat(colName, "16"); else doTemp.setCheckFormat(colName, "1"); - if(dataType.equals("2")||dataType.equals("5")||dataType.equals("6")){//数字类 + if(dataType.equals("2")||dataType.equals("5")||dataType.equals("6")||dataType.equals("7")){//数字类 doTemp.setAlign(colName, "3"); doTemp.setColumnType(colName, "String"); }