diff --git a/WebContent/WEB-INF/etc/app/component/component-config.xml b/WebContent/WEB-INF/etc/app/component/component-config.xml
index 503b75bf6..199396fa0 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/calc/com/tenwa/reckon/product/ProductConditionService.java b/calc/com/tenwa/reckon/product/ProductConditionService.java
index 9b70cd7fd..000f44197 100644
--- a/calc/com/tenwa/reckon/product/ProductConditionService.java
+++ b/calc/com/tenwa/reckon/product/ProductConditionService.java
@@ -99,6 +99,13 @@ public class ProductConditionService {
//System.err.println(oneOrMore);
doTemp.setDefaultValue("HANDLING_CHARGE_MONEY_TYPE", oneOrMore == null ? "" : oneOrMore);
}
+ //设置GPS是否只读
+ if(col.equals("GPS_FEE")) {
+ String GPSFee = map.get(col).get("RentMonthReadOnly");
+ if(GPSFee!= null && "Y".equals(GPSFee)) {
+ doTemp.setReadOnly("GPS_FEE", true);
+ }
+ }
String groupId = doTemp.getColumnAttribute(col, "groupid");