|
|
@ -71,8 +71,6 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
List<String> errFile = new ArrayList<String>();
|
|
|
|
List<String> errFile = new ArrayList<String>();
|
|
|
|
// 待增加的
|
|
|
|
// 待增加的
|
|
|
|
List<PreDataInfo> all2Insert = new ArrayList<PreDataInfo>();
|
|
|
|
List<PreDataInfo> all2Insert = new ArrayList<PreDataInfo>();
|
|
|
|
// 待修改的
|
|
|
|
|
|
|
|
List<PreDataInfo> all2Update = new ArrayList<PreDataInfo>();
|
|
|
|
|
|
|
|
//excel读出的 所有
|
|
|
|
//excel读出的 所有
|
|
|
|
List<PreDataInfo> all = new ArrayList<PreDataInfo>();
|
|
|
|
List<PreDataInfo> all = new ArrayList<PreDataInfo>();
|
|
|
|
//excel读出的 所有修改操作的数据
|
|
|
|
//excel读出的 所有修改操作的数据
|
|
|
@ -108,16 +106,18 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
//excel数据 --> java bean
|
|
|
|
//excel数据 --> java bean
|
|
|
|
List<PreDataInfo> subPreData = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, pre, "id", "dataId", "workRange","sysCode","updateTime","userTablespaceStatus", "checkoutIndicateStatus", "checkoutPayStatus", "userTablespacePath", "checkoutIndicatePath", "checkoutPayPath", "sqlList", "dataVersion", "collectingTime", "collUpdate");
|
|
|
|
List<PreDataInfo> subPreData = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, pre, "id", "dataId", "workRange","sysCode","updateTime","userTablespaceStatus", "checkoutIndicateStatus", "checkoutPayStatus", "userTablespacePath", "checkoutIndicatePath", "checkoutPayPath", "sqlList", "dataVersion", "collectingTime", "collUpdate");
|
|
|
|
if (null != subPreData && subPreData.size() > 0) {
|
|
|
|
if (null != subPreData && subPreData.size() > 0) {
|
|
|
|
//是否是 同一个县区的 系统--是则 加入
|
|
|
|
// 是否是 同一个县区的 系统--是则 加入
|
|
|
|
boolean isSameArea = true;
|
|
|
|
boolean isSameArea = true;
|
|
|
|
String areaCode = subPreData.get(0).getAreaCode();
|
|
|
|
String areaCode = subPreData.get(0).getAreaCode();
|
|
|
|
for (PreDataInfo preDataInfo : subPreData) {
|
|
|
|
for (PreDataInfo preDataInfo : subPreData) {
|
|
|
|
if (!areaCode.equals(preDataInfo.getAreaCode())) {
|
|
|
|
if (!areaCode.equals(preDataInfo.getAreaCode())) {
|
|
|
|
isSameArea = false;
|
|
|
|
// TODO 不是同一个地区: isSameArea = false;
|
|
|
|
|
|
|
|
// isSameArea = false;
|
|
|
|
errArea.add(areaCode);
|
|
|
|
errArea.add(areaCode);
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 是同一个地区,则将 excel中的 待 操作的数据 全加载 到 all 里面
|
|
|
|
if (isSameArea) {
|
|
|
|
if (isSameArea) {
|
|
|
|
all.addAll(subPreData);
|
|
|
|
all.addAll(subPreData);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -161,18 +161,51 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 查系统 是否没有-(没有则在 pre_data_info添加新系统):
|
|
|
|
//TODO 查 地区 是否没有-(没有则添加新地区):
|
|
|
|
|
|
|
|
if (list4AddArea.size() > 0) {
|
|
|
|
|
|
|
|
this.addArea(list4AddArea);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统 -- start
|
|
|
|
|
|
|
|
List<PreDataInfo> allAreaInsert = new ArrayList<PreDataInfo>();
|
|
|
|
|
|
|
|
List<String> sysNamesArea = new ArrayList<String>();
|
|
|
|
|
|
|
|
for (PreDataInfo preDataInfo : list4AddArea) {
|
|
|
|
|
|
|
|
sysNamesArea.add(preDataInfo.getSysName());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//查询系统的code。
|
|
|
|
|
|
|
|
List<SystemEntity> listSystem = new ArrayList<SystemEntity>();
|
|
|
|
|
|
|
|
// if (sysNamesArea.size() > 0) {
|
|
|
|
|
|
|
|
// listSystem = systemCodeDao.findByName(sysNamesArea);
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
Map<String, Integer> syscodeMap = new HashMap<String, Integer>();
|
|
|
|
|
|
|
|
// for (SystemEntity systemEntity : listSystem) {
|
|
|
|
|
|
|
|
// syscodeMap.put(systemEntity.getSystemName(), systemEntity.getCode());
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// for (PreDataInfo preDataInfo : list4AddArea) {
|
|
|
|
|
|
|
|
// PreDataInfo areaFull = new PreDataInfo();
|
|
|
|
|
|
|
|
// BeanCopy.copyBean(preDataInfo, areaFull);
|
|
|
|
|
|
|
|
// areaFull.setSysCode(syscodeMap.get(areaFull.getSysName()));
|
|
|
|
|
|
|
|
// areaFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
|
|
|
|
|
|
|
|
// allAreaInsert.add(areaFull);
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
//TODO 去掉 已经导入的系统。。(例如 excel反复导入)
|
|
|
|
|
|
|
|
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统
|
|
|
|
|
|
|
|
allAreaInsert = removeRepeat(list4AddArea);
|
|
|
|
|
|
|
|
if (allAreaInsert.size() > 0) {
|
|
|
|
|
|
|
|
list4AddSystem.addAll(allAreaInsert);
|
|
|
|
|
|
|
|
// insertBatch(allAreaInsert);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO 查系统 是否没有-(没有则在 pre_data_info添加新系统):
|
|
|
|
if (list4AddSystem.size() > 0) {
|
|
|
|
if (list4AddSystem.size() > 0) {
|
|
|
|
this.AddSystem(list4AddSystem);
|
|
|
|
this.AddSystem(list4AddSystem);
|
|
|
|
List<String> sysNames = new ArrayList<String>();
|
|
|
|
List<String> sysNames = new ArrayList<String>();
|
|
|
|
for (PreDataInfo preDataInfo : list4AddSystem) {
|
|
|
|
for (PreDataInfo preDataInfo : list4AddSystem) {
|
|
|
|
sysNames.add(preDataInfo.getSysName());
|
|
|
|
sysNames.add(preDataInfo.getSysName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
List<SystemEntity> listSystem = new ArrayList<SystemEntity>();
|
|
|
|
listSystem = new ArrayList<SystemEntity>();
|
|
|
|
if (sysNames.size() > 0) {
|
|
|
|
if (sysNames.size() > 0) {
|
|
|
|
listSystem = systemCodeDao.findByName(sysNames);
|
|
|
|
listSystem = systemCodeDao.findByName(sysNames);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Map<String, Integer> syscodeMap = new HashMap<String, Integer>();
|
|
|
|
syscodeMap = new HashMap<String, Integer>();
|
|
|
|
for (SystemEntity systemEntity : listSystem) {
|
|
|
|
for (SystemEntity systemEntity : listSystem) {
|
|
|
|
syscodeMap.put(systemEntity.getSystemName(), systemEntity.getCode());
|
|
|
|
syscodeMap.put(systemEntity.getSystemName(), systemEntity.getCode());
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -188,43 +221,13 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
//在 pre_data_info表中 新增 操作为(新增信息系统)的系统
|
|
|
|
//在 pre_data_info表中 新增 操作为(新增信息系统)的系统
|
|
|
|
all2Insert = removeRepeat(all2Insert);
|
|
|
|
all2Insert = removeRepeat(all2Insert);
|
|
|
|
if (all2Insert.size() > 0) {
|
|
|
|
if (all2Insert.size() > 0) {
|
|
|
|
preDataInfoDao.insertBatch(all2Insert);
|
|
|
|
insertBatch(all2Insert);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 查 地区 是否没有-(没有则添加新地区):
|
|
|
|
|
|
|
|
if (list4AddArea.size() > 0) {
|
|
|
|
|
|
|
|
this.addArea(list4AddArea);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统 -- start
|
|
|
|
|
|
|
|
List<PreDataInfo> allAreaInsert = new ArrayList<PreDataInfo>();
|
|
|
|
|
|
|
|
List<String> sysNamesArea = new ArrayList<String>();
|
|
|
|
|
|
|
|
for (PreDataInfo preDataInfo : list4AddArea) {
|
|
|
|
|
|
|
|
sysNamesArea.add(preDataInfo.getSysName());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//查询系统的code。
|
|
|
|
|
|
|
|
List<SystemEntity> listSystem = new ArrayList<SystemEntity>();
|
|
|
|
|
|
|
|
if (sysNamesArea.size() > 0) {
|
|
|
|
|
|
|
|
listSystem = systemCodeDao.findByName(sysNamesArea);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Map<String, Integer> syscodeMap = new HashMap<String, Integer>();
|
|
|
|
|
|
|
|
for (SystemEntity systemEntity : listSystem) {
|
|
|
|
|
|
|
|
syscodeMap.put(systemEntity.getSystemName(), systemEntity.getCode());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
for (PreDataInfo preDataInfo : list4AddArea) {
|
|
|
|
|
|
|
|
PreDataInfo areaFull = new PreDataInfo();
|
|
|
|
|
|
|
|
BeanCopy.copyBean(preDataInfo, areaFull);
|
|
|
|
|
|
|
|
areaFull.setSysCode(syscodeMap.get(areaFull.getSysName()));
|
|
|
|
|
|
|
|
areaFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
|
|
|
|
|
|
|
|
allAreaInsert.add(areaFull);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO 去掉 已经导入的系统。。(例如 excel反复导入)
|
|
|
|
|
|
|
|
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统
|
|
|
|
|
|
|
|
allAreaInsert = removeRepeat(allAreaInsert);
|
|
|
|
|
|
|
|
if (allAreaInsert.size() > 0) {
|
|
|
|
|
|
|
|
preDataInfoDao.insertBatch(allAreaInsert);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统 -- end
|
|
|
|
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统 -- end
|
|
|
|
//在 pre_data_info表中 更新 操作为 (修改) 的系统
|
|
|
|
//在 pre_data_info表中 更新 操作为 (修改) 的系统
|
|
|
|
if (list4Update.size() > 0) {
|
|
|
|
if (list4Update.size() > 0) {
|
|
|
|
|
|
|
|
// 待修改的
|
|
|
|
List<PreDataInfo> allUpdate = new ArrayList<PreDataInfo>();
|
|
|
|
List<PreDataInfo> allUpdate = new ArrayList<PreDataInfo>();
|
|
|
|
// 查询系统 code
|
|
|
|
// 查询系统 code
|
|
|
|
for (PreDataInfo preDataInfo : list4Update) {
|
|
|
|
for (PreDataInfo preDataInfo : list4Update) {
|
|
|
@ -246,6 +249,7 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
UpdateFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
|
|
|
|
UpdateFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
|
|
|
|
allUpdate.add(UpdateFull);
|
|
|
|
allUpdate.add(UpdateFull);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO 更新
|
|
|
|
for (PreDataInfo preEntity : allUpdate) {
|
|
|
|
for (PreDataInfo preEntity : allUpdate) {
|
|
|
|
preDataInfoDao.update(preEntity);
|
|
|
|
preDataInfoDao.update(preEntity);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -334,12 +338,12 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
List<String> areacodeList = new ArrayList<String>();
|
|
|
|
List<String> areacodeList = new ArrayList<String>();
|
|
|
|
Map<String,RegionalismEntity> areaMap = new HashMap<String, RegionalismEntity>();
|
|
|
|
Map<String,RegionalismEntity> areaMap = new HashMap<String, RegionalismEntity>();
|
|
|
|
for (PreDataInfo preDataInfo : list4AddArea) {
|
|
|
|
for (PreDataInfo preDataInfo : list4AddArea) {
|
|
|
|
areacodeList.add(preDataInfo.getAreaCode());
|
|
|
|
areacodeList.add(preDataInfo.getAreaCode().toLowerCase());
|
|
|
|
RegionalismEntity region = new RegionalismEntity();
|
|
|
|
RegionalismEntity region = new RegionalismEntity();
|
|
|
|
region.setCode(preDataInfo.getAreaCode());
|
|
|
|
region.setCode(preDataInfo.getAreaCode().toLowerCase());
|
|
|
|
region.setCityName(preDataInfo.getCityName());
|
|
|
|
region.setCityName(preDataInfo.getCityName());
|
|
|
|
region.setDistrictName(preDataInfo.getDistrictName());
|
|
|
|
region.setDistrictName(preDataInfo.getDistrictName());
|
|
|
|
areaMap.put(region.getCode(), region);
|
|
|
|
areaMap.put(region.getCode().toLowerCase(), region);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
List<RegionalismEntity> existEntity = regionalismCodeDao.findExistRegionalism(areacodeList);
|
|
|
|
List<RegionalismEntity> existEntity = regionalismCodeDao.findExistRegionalism(areacodeList);
|
|
|
|
for (RegionalismEntity regionalismEntity : existEntity) {
|
|
|
|
for (RegionalismEntity regionalismEntity : existEntity) {
|
|
|
@ -352,7 +356,11 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
insert2Regionalism.add(areaMap.get(key));
|
|
|
|
insert2Regionalism.add(areaMap.get(key));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (insert2Regionalism.size() > 0) {
|
|
|
|
if (insert2Regionalism.size() > 0) {
|
|
|
|
regionalismCodeDao.insertBatch(insert2Regionalism);
|
|
|
|
try {
|
|
|
|
|
|
|
|
regionalismCodeDao.insertBatch(insert2Regionalism);
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
|
|
log.error(" -- regionalismCodeDao.insertBatch() --- error ");
|
|
|
|
|
|
|
|
}
|
|
|
|
insertNum = insert2Regionalism.size();
|
|
|
|
insertNum = insert2Regionalism.size();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -474,4 +482,34 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
return allResult;
|
|
|
|
return allResult;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 批量插入--一次限定多少个(将allAreaInsert 分成 设定大小的 集合) 比如 allAreaInsert 有 100个, 按照 11个为一个集合分,可分成 10个集合
|
|
|
|
|
|
|
|
* @param allAreaInsert
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private void insertBatch(List<PreDataInfo> allAreaInsert) {
|
|
|
|
|
|
|
|
if (allAreaInsert.size() > 0) {
|
|
|
|
|
|
|
|
int listSize = allAreaInsert.size();
|
|
|
|
|
|
|
|
int loopSize = listSize/Configs.NUM_ONE_IMPORT_EXCEL;
|
|
|
|
|
|
|
|
if (loopSize * Configs.NUM_ONE_IMPORT_EXCEL != listSize) {
|
|
|
|
|
|
|
|
loopSize++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// List<ArrayList<PreDataInfo>> list = new ArrayList<ArrayList<PreDataInfo>>();
|
|
|
|
|
|
|
|
List<PreDataInfo>[] list = new ArrayList[loopSize];
|
|
|
|
|
|
|
|
for (int i = 0; i < loopSize; i++) {
|
|
|
|
|
|
|
|
list[i] = new ArrayList<PreDataInfo>();
|
|
|
|
|
|
|
|
// list.add(new ArrayList<PreDataInfo>());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < listSize; i++) {
|
|
|
|
|
|
|
|
list[i%loopSize].add(allAreaInsert.get(i));
|
|
|
|
|
|
|
|
// list.get(i%loopSize).add(allAreaInsert.get(i));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
for (List<PreDataInfo> arrayList : list) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
preDataInfoDao.insertBatch(arrayList);
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
|
|
log.error(e.getStackTrace());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|