This commit is contained in:
zhouyahui 2018-08-08 11:27:23 +08:00
commit a58718cbc0
2 changed files with 8 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -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");