Commit de5362ef authored by 刘林's avatar 刘林

fix(JG):车用气瓶单位内部编号改为车牌号

parent ab1d45e8
...@@ -965,14 +965,18 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform ...@@ -965,14 +965,18 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
.filter(Objects::nonNull) .filter(Objects::nonNull)
.collect(Collectors.toList()))); .collect(Collectors.toList())));
//if (!ValidationUtil.isEmpty(userInfoList)) {
// exportParamsMap.put("useInnerCode", userInfoList.stream()
// .map(IdxBizJgUseInfo::getUseInnerCode)
// .filter(Objects::nonNull)
// .distinct()
// .collect(Collectors.joining(", ")));
//}
if (!ValidationUtil.isEmpty(userInfoList)) { if (!ValidationUtil.isEmpty(userInfoList)) {
exportParamsMap.put("useInnerCode", userInfoList.stream() exportParamsMap.put("useInnerCode", vehicleInformation.getCarNumber());
.map(IdxBizJgUseInfo::getUseInnerCode)
.filter(Objects::nonNull)
.distinct()
.collect(Collectors.joining(", ")));
} }
List<IdxBizJgFactoryInfo> factoryInfoList = idxBizJgFactoryInfoMapper.selectList(new QueryWrapper<IdxBizJgFactoryInfo>().in("RECORD", vehicleInformationEqList.stream() List<IdxBizJgFactoryInfo> factoryInfoList = idxBizJgFactoryInfoMapper.selectList(new QueryWrapper<IdxBizJgFactoryInfo>().in("RECORD", vehicleInformationEqList.stream()
.map(JgVehicleInformationEq::getEquId) .map(JgVehicleInformationEq::getEquId)
.filter(Objects::nonNull) .filter(Objects::nonNull)
......
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