Commit 9f73143d authored by hezhuozhi's avatar hezhuozhi

气瓶数据项调整 / 发起页调整

parent ee372985
...@@ -1273,6 +1273,20 @@ public class IdxBizJgRegisterInfoServiceImpl extends BaseService<IdxBizJgRegiste ...@@ -1273,6 +1273,20 @@ public class IdxBizJgRegisterInfoServiceImpl extends BaseService<IdxBizJgRegiste
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
objMap.putAll(filterMap); objMap.putAll(filterMap);
} }
//处理前端返回特种气瓶(车用气瓶)和特种气瓶(非车用气瓶)
String equDefineStr = (String) objMap.get("EQU_DEFINE");
String whetherVehicleCylinderStr = (String)objMap.get("WHETHER_VEHICLE_CYLINDER");
String equCategoryStr = (String)objMap.get("EQU_CATEGORY");
if(CylinderTypeEnum.CYLINDER.getCode().equals(equCategoryStr)){
if(CylinderTypeEnum.SPECIAL_CYLINDER.getCode().equals(equCategoryStr)){
if("1".equals(whetherVehicleCylinderStr)){
equDefineStr="23T0_1";
}else if("0".equals(whetherVehicleCylinderStr)){
equDefineStr="23T0_2";
}
}
objMap.put("EQU_DEFINE_DEAL",equDefineStr);
}
} }
return objMap; return objMap;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment