|
|
|
@ -340,6 +340,9 @@ public class SpsSyncDownloadController {
|
|
|
|
|
case USER_DATA:
|
|
|
|
|
saveUploadUserData(JSONUtil.toBean(obj, SpsSyncDataResponse.class));
|
|
|
|
|
break;
|
|
|
|
|
case THIRD_DATA:
|
|
|
|
|
saveUploadThrData(JSONUtil.toBean(obj, SpsSyncThrDataResponse.class));
|
|
|
|
|
break;
|
|
|
|
|
case COUNTRY_DI_DATA:
|
|
|
|
|
}
|
|
|
|
|
String taskId = obj.getStr("taskId");
|
|
|
|
@ -362,6 +365,26 @@ public class SpsSyncDownloadController {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private final ThrDeptDao thrDeptDao;
|
|
|
|
|
private final ThrInvWarehouseDao thrInvWarehouseDao;
|
|
|
|
|
private final ThrProductsDao thrProductsDao;
|
|
|
|
|
private final ThrCorpDao thrCorpDao;
|
|
|
|
|
private void saveUploadThrData(SpsSyncThrDataResponse bean) {
|
|
|
|
|
|
|
|
|
|
if (CollectionUtil.isNotEmpty(bean.getDeptEntities())) {
|
|
|
|
|
thrDeptDao.insertOrUpdateBatch(bean.getDeptEntities());
|
|
|
|
|
}
|
|
|
|
|
if (CollectionUtil.isNotEmpty(bean.getInvWarehouseEntities())) {
|
|
|
|
|
thrInvWarehouseDao.insertOrUpdateBatch(bean.getInvWarehouseEntities());
|
|
|
|
|
}
|
|
|
|
|
if (CollectionUtil.isNotEmpty(bean.getProductsEntityList())) {
|
|
|
|
|
thrProductsDao.insertOrUpdateBatch(bean.getProductsEntityList());
|
|
|
|
|
}
|
|
|
|
|
if (CollectionUtil.isNotEmpty(bean.getCorpEntities())) {
|
|
|
|
|
thrCorpDao.insertOrUpdateBatch(bean.getCorpEntities());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void saveUploadUserData(SpsSyncDataResponse bean) {
|
|
|
|
|
|
|
|
|
|
if (CollectionUtil.isNotEmpty(bean.getAuthAdminList())) {
|
|
|
|
@ -843,7 +866,7 @@ public class SpsSyncDownloadController {
|
|
|
|
|
if (CollUtil.isNotEmpty(spsSyncThrDataResponse.getDeptEntities())) {
|
|
|
|
|
List<ThrDeptEntity> deptEntities = spsSyncThrDataResponse.getDeptEntities();
|
|
|
|
|
ThrDeptDao mapper = sqlSession.getMapper(ThrDeptDao.class);
|
|
|
|
|
deptEntities.forEach(mapper::insertOrUpdate);
|
|
|
|
|
deptEntities.forEach(mapper::insertOrUpdateEntity);
|
|
|
|
|
}
|
|
|
|
|
sqlSession.commit();
|
|
|
|
|
remark.append("第三方部门信息:").append(spsSyncThrDataResponse.getDeptEntities().size()).append("条\n");
|
|
|
|
@ -852,7 +875,7 @@ public class SpsSyncDownloadController {
|
|
|
|
|
if (CollUtil.isNotEmpty(spsSyncThrDataResponse.getInvWarehouseEntities())) {
|
|
|
|
|
List<ThrInvWarehouseEntity> invWarehouseEntities = spsSyncThrDataResponse.getInvWarehouseEntities();
|
|
|
|
|
ThrInvWarehouseDao mapper = sqlSession.getMapper(ThrInvWarehouseDao.class);
|
|
|
|
|
invWarehouseEntities.forEach(mapper::insertOrUpdate);
|
|
|
|
|
invWarehouseEntities.forEach(mapper::insertOrUpdateEntity);
|
|
|
|
|
}
|
|
|
|
|
sqlSession.commit();
|
|
|
|
|
remark.append("第三方仓库信息:").append(spsSyncThrDataResponse.getInvWarehouseEntities().size()).append("条\n");
|
|
|
|
@ -861,7 +884,7 @@ public class SpsSyncDownloadController {
|
|
|
|
|
if (CollUtil.isNotEmpty(spsSyncThrDataResponse.getCorpEntities())) {
|
|
|
|
|
List<ThrCorpEntity> corpEntities = spsSyncThrDataResponse.getCorpEntities();
|
|
|
|
|
ThrCorpDao mapper = sqlSession.getMapper(ThrCorpDao.class);
|
|
|
|
|
corpEntities.forEach(mapper::insertOrUpdate);
|
|
|
|
|
corpEntities.forEach(mapper::insertOrUpdateEntity);
|
|
|
|
|
}
|
|
|
|
|
sqlSession.commit();
|
|
|
|
|
remark.append("第三方往来单位信息:").append(spsSyncThrDataResponse.getCorpEntities().size()).append("条\n");
|
|
|
|
@ -1019,7 +1042,7 @@ public class SpsSyncDownloadController {
|
|
|
|
|
if (CollUtil.isNotEmpty(spsSyncThrProductsResponse.getProductsEntities())) {
|
|
|
|
|
List<ThrProductsEntity> productsEntities = spsSyncThrProductsResponse.getProductsEntities();
|
|
|
|
|
ThrProductsDao mapper = sqlSession.getMapper(ThrProductsDao.class);
|
|
|
|
|
productsEntities.forEach(mapper::insertOrUpdate);
|
|
|
|
|
productsEntities.forEach(mapper::insertOrUpdateEntity);
|
|
|
|
|
}
|
|
|
|
|
sqlSession.commit();
|
|
|
|
|
remark.append("第三方产品信息:").append(spsSyncThrProductsResponse.getProductsEntities().size()).append("条\n");
|
|
|
|
|