|
|
|
@ -7,26 +7,34 @@ import com.glxp.api.admin.constant.BasicProcessStatus;
|
|
|
|
|
import com.glxp.api.admin.constant.ConstantStatus;
|
|
|
|
|
import com.glxp.api.admin.dao.auth.AuthAdminDao;
|
|
|
|
|
import com.glxp.api.admin.dao.basic.*;
|
|
|
|
|
import com.glxp.api.admin.dao.inout.*;
|
|
|
|
|
import com.glxp.api.admin.dao.inout.CodesTempDao;
|
|
|
|
|
import com.glxp.api.admin.dao.inout.OrderDao;
|
|
|
|
|
import com.glxp.api.admin.dao.inout.WarehouseBussinessTypeDao;
|
|
|
|
|
import com.glxp.api.admin.dao.inout.WarehouseUserDao;
|
|
|
|
|
import com.glxp.api.admin.dao.thrsys.ThrCorpDao;
|
|
|
|
|
import com.glxp.api.admin.dao.thrsys.ThrOrderDao;
|
|
|
|
|
import com.glxp.api.admin.dao.thrsys.ThrOrderDetailDao;
|
|
|
|
|
import com.glxp.api.admin.dao.thrsys.ThrProductsDao;
|
|
|
|
|
import com.glxp.api.admin.entity.auth.AuthAdmin;
|
|
|
|
|
import com.glxp.api.admin.entity.basic.*;
|
|
|
|
|
import com.glxp.api.admin.entity.inout.*;
|
|
|
|
|
import com.glxp.api.admin.entity.inout.OrderEntity;
|
|
|
|
|
import com.glxp.api.admin.entity.inout.WarehouseBussinessTypeEntity;
|
|
|
|
|
import com.glxp.api.admin.entity.inout.WarehouseEntity;
|
|
|
|
|
import com.glxp.api.admin.entity.inout.WarehouseUserEntity;
|
|
|
|
|
import com.glxp.api.admin.entity.inventory.InvWarehouseEntity;
|
|
|
|
|
import com.glxp.api.admin.entity.thrsys.*;
|
|
|
|
|
import com.glxp.api.admin.httpclient.SpGetHttpClient;
|
|
|
|
|
import com.glxp.api.admin.req.basic.BasicExportStatusRequest;
|
|
|
|
|
import com.glxp.api.admin.res.basic.*;
|
|
|
|
|
import com.glxp.api.admin.service.auth.AuthAdminService;
|
|
|
|
|
import com.glxp.api.admin.res.basic.SpSyncUdiResponse;
|
|
|
|
|
import com.glxp.api.admin.res.basic.SpsSyncBusResponse;
|
|
|
|
|
import com.glxp.api.admin.res.basic.SpsSyncDataResponse;
|
|
|
|
|
import com.glxp.api.admin.res.basic.SpsSyncOrderResponse;
|
|
|
|
|
import com.glxp.api.admin.service.basic.BasicDownloadService;
|
|
|
|
|
import com.glxp.api.admin.service.basic.BussinessChangeTypeService;
|
|
|
|
|
import com.glxp.api.admin.service.basic.UdiInfoImportDetailService;
|
|
|
|
|
import com.glxp.api.admin.service.inout.OrderService;
|
|
|
|
|
import com.glxp.api.admin.service.inventory.InvWarehouseService;
|
|
|
|
|
import com.glxp.api.admin.service.thrsys.ThrInvWarehouseService;
|
|
|
|
|
import com.glxp.api.admin.util.RedisUtil;
|
|
|
|
|
import com.glxp.api.admin.httpclient.SpGetHttpClient;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import org.apache.ibatis.session.ExecutorType;
|
|
|
|
|
import org.apache.ibatis.session.SqlSession;
|
|
|
|
@ -68,6 +76,8 @@ public class DlBasicService {
|
|
|
|
|
ThrInvWarehouseService thrInvWarehouseService;
|
|
|
|
|
@Resource
|
|
|
|
|
BussinessChangeTypeService bussinessChangeTypeService;
|
|
|
|
|
@Resource
|
|
|
|
|
private BasicDownloadService basicDownloadService;
|
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(DlBasicService.class);
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------
|
|
|
|
@ -82,8 +92,22 @@ public class DlBasicService {
|
|
|
|
|
String datas = spGetHttp.getBasicData(basicExportStatusEntity.getId(), BasicProcessStatus.NEW_ALL_DATA);
|
|
|
|
|
BaseResponse<SpsSyncDataResponse> response = JSONObject.parseObject(datas, new TypeReference<BaseResponse<SpsSyncDataResponse>>() {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (response.getCode() == 20000 && response.getData() != null) {
|
|
|
|
|
SpsSyncDataResponse syncDataResponse = response.getData();
|
|
|
|
|
|
|
|
|
|
//构造下载记录
|
|
|
|
|
BasicDownloadStatusEntity basicDownloadStatusEntity = new BasicDownloadStatusEntity();
|
|
|
|
|
basicDownloadStatusEntity.setId(syncDataResponse.getTaskId());
|
|
|
|
|
basicDownloadStatusEntity.setStartTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setIdDatas(ConstantStatus.SYNC_DOWNLOAD_BASIC_DATA);
|
|
|
|
|
basicDownloadStatusEntity.setStatus(0); //下载中
|
|
|
|
|
basicDownloadStatusEntity.setType(BasicProcessStatus.NEW_ALL_DATA);
|
|
|
|
|
basicDownloadStatusEntity.setScheduleType(1);
|
|
|
|
|
|
|
|
|
|
basicDownloadService.insertDownloadStatus(basicDownloadStatusEntity);
|
|
|
|
|
StringBuffer remark = new StringBuffer();
|
|
|
|
|
|
|
|
|
|
SqlSession batchSession = sqlSessionFactory.openSession(ExecutorType.BATCH, TransactionIsolationLevel.READ_COMMITTED);
|
|
|
|
|
//仓库字典导入
|
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getInvWarehouseEntities())) {
|
|
|
|
@ -93,6 +117,7 @@ public class DlBasicService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
invWarehouseService.importInvWarehouse(syncDataResponse.getInvWarehouseEntities());
|
|
|
|
|
remark.append("仓库字典:").append(syncDataResponse.getInvWarehouseEntities().size()).append("条\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//关联表导入
|
|
|
|
@ -118,6 +143,7 @@ public class DlBasicService {
|
|
|
|
|
mapper.insertUdiInfo(udiInfoEntity);
|
|
|
|
|
}
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("耗材字典:").append(syncDataResponse.getUdiInfoEntities().size()).append("条\n");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -133,6 +159,7 @@ public class DlBasicService {
|
|
|
|
|
mapper.importBasicUnitMaintain(basicUnitMaintainEntity);
|
|
|
|
|
}
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("往来单位:").append(syncDataResponse.getBasicUnitMaintainEntities().size()).append("条\n");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -163,6 +190,7 @@ public class DlBasicService {
|
|
|
|
|
mapper.insertThrProducts(thrProductsEntity);
|
|
|
|
|
}
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("第三方产品信息:").append(syncDataResponse.getThrProductsEntities().size()).append("条\n");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -178,6 +206,7 @@ public class DlBasicService {
|
|
|
|
|
mapper.importThrCorp(thrCorpEntity);
|
|
|
|
|
});
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("第三方往来单位信息:").append(syncDataResponse.getThrCorpEntities().size()).append("条\n");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -192,6 +221,7 @@ public class DlBasicService {
|
|
|
|
|
mapper.importThrOrder(thrCorpEntity);
|
|
|
|
|
});
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("第三方业务单据:").append(syncDataResponse.getThrOrderEntities().size()).append("条\n");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -205,6 +235,7 @@ public class DlBasicService {
|
|
|
|
|
mapper.importThrOrderDetail(thrOrderDetailEntity);
|
|
|
|
|
});
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("第三方业务单据详情:").append(syncDataResponse.getThrOrderDetailEntities().size()).append("条\n");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -215,6 +246,7 @@ public class DlBasicService {
|
|
|
|
|
invWarehouseEntity.setUpdateTime(null);
|
|
|
|
|
}
|
|
|
|
|
thrInvWarehouseService.insertInvWarehouses(syncDataResponse.getThrInvWarehouseEntities());
|
|
|
|
|
remark.append("第三方仓库信息:").append(syncDataResponse.getThrInvWarehouseEntities().size()).append("条\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -223,6 +255,7 @@ public class DlBasicService {
|
|
|
|
|
for (WarehouseUserEntity warehouseUserEntity : syncDataResponse.getWarehouseUserEntities()) {
|
|
|
|
|
warehouseUserDao.insertOrUpdate(warehouseUserEntity);
|
|
|
|
|
}
|
|
|
|
|
remark.append("仓库用户:").append(syncDataResponse.getWarehouseUserEntities().size()).append("条\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//仓库单据类型表
|
|
|
|
@ -230,6 +263,7 @@ public class DlBasicService {
|
|
|
|
|
for (WarehouseBussinessTypeEntity warehouseUserEntity : syncDataResponse.getWarehouseBussinessTypeEntities()) {
|
|
|
|
|
warehouseBussinessTypeDao.insertOrUpdate(warehouseUserEntity);
|
|
|
|
|
}
|
|
|
|
|
remark.append("仓库单据:").append(syncDataResponse.getWarehouseBussinessTypeEntities().size()).append("条\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//用户表
|
|
|
|
@ -238,13 +272,16 @@ public class DlBasicService {
|
|
|
|
|
authAdmin.setLastModifyTime(null);
|
|
|
|
|
authAdminService.replaceAuthAdmin(authAdmin);
|
|
|
|
|
}
|
|
|
|
|
remark.append("用户:").append(syncDataResponse.getAuthAdminList().size()).append("条\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
|
|
|
|
|
batchSession.close();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
basicDownloadStatusEntity.setUpdateTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setEndTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setRemark(remark.toString());
|
|
|
|
|
basicDownloadService.updateDownloadStatus(basicDownloadStatusEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -264,6 +301,19 @@ public class DlBasicService {
|
|
|
|
|
});
|
|
|
|
|
if (response.getCode() == 20000 && response.getData() != null) {
|
|
|
|
|
SpsSyncBusResponse syncDataResponse = response.getData();
|
|
|
|
|
|
|
|
|
|
//构造下载记录
|
|
|
|
|
BasicDownloadStatusEntity basicDownloadStatusEntity = new BasicDownloadStatusEntity();
|
|
|
|
|
basicDownloadStatusEntity.setId(syncDataResponse.getTaskId());
|
|
|
|
|
basicDownloadStatusEntity.setStartTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setIdDatas(ConstantStatus.SYNC_DOWNLOAD_BUS_TYPE);
|
|
|
|
|
basicDownloadStatusEntity.setStatus(0); //下载中
|
|
|
|
|
basicDownloadStatusEntity.setType(BasicProcessStatus.NEW_ALL_BUS);
|
|
|
|
|
basicDownloadStatusEntity.setScheduleType(1);
|
|
|
|
|
|
|
|
|
|
basicDownloadService.insertDownloadStatus(basicDownloadStatusEntity);
|
|
|
|
|
StringBuffer remark = new StringBuffer();
|
|
|
|
|
|
|
|
|
|
SqlSession batchSession = sqlSessionFactory.openSession(ExecutorType.BATCH, TransactionIsolationLevel.READ_COMMITTED);
|
|
|
|
|
|
|
|
|
|
//扫码单据
|
|
|
|
@ -276,6 +326,7 @@ public class DlBasicService {
|
|
|
|
|
mapper.insertBussinessType(bussinessTypeEntity);
|
|
|
|
|
}
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("扫码单据类型:").append(syncDataResponse.getBussinessTypeEntities().size()).append("条\n");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.error(e.getMessage());
|
|
|
|
|
}
|
|
|
|
@ -299,6 +350,7 @@ public class DlBasicService {
|
|
|
|
|
bussinessChangeTypeService.insertBusChangeTypee(bussinessChangeTypeEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
remark.append("业务单据类型:").append(syncDataResponse.getBussinessLocalTypeEntities().size()).append("条\n");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.error(e.getMessage());
|
|
|
|
|
}
|
|
|
|
@ -313,12 +365,19 @@ public class DlBasicService {
|
|
|
|
|
mapper.insertBusOriginType(bussinessTypeEntity);
|
|
|
|
|
}
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("第三方单据类型:").append(syncDataResponse.getBussinessOriginTypeEntities().size()).append("条\n");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.error(e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
batchSession.close();
|
|
|
|
|
spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
|
|
|
|
|
|
|
|
|
|
basicDownloadStatusEntity.setUpdateTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setEndTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setRemark(remark.toString());
|
|
|
|
|
|
|
|
|
|
basicDownloadService.updateDownloadStatus(basicDownloadStatusEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -339,6 +398,18 @@ public class DlBasicService {
|
|
|
|
|
});
|
|
|
|
|
if (response.getCode() == 20000 && response.getData() != null) {
|
|
|
|
|
SpsSyncOrderResponse syncDataResponse = response.getData();
|
|
|
|
|
|
|
|
|
|
BasicDownloadStatusEntity basicDownloadStatusEntity = new BasicDownloadStatusEntity();
|
|
|
|
|
basicDownloadStatusEntity.setId(syncDataResponse.getTaskId());
|
|
|
|
|
basicDownloadStatusEntity.setStartTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setIdDatas(ConstantStatus.SYNC_DOWNLOAD_SCAN_ORDER);
|
|
|
|
|
basicDownloadStatusEntity.setStatus(0); //下载中
|
|
|
|
|
basicDownloadStatusEntity.setType(BasicProcessStatus.NEW_ALL_ORDER);
|
|
|
|
|
basicDownloadStatusEntity.setScheduleType(1);
|
|
|
|
|
|
|
|
|
|
basicDownloadService.insertDownloadStatus(basicDownloadStatusEntity);
|
|
|
|
|
StringBuffer remark = new StringBuffer();
|
|
|
|
|
|
|
|
|
|
SqlSession batchSession = sqlSessionFactory.openSession(ExecutorType.BATCH, TransactionIsolationLevel.READ_COMMITTED);
|
|
|
|
|
if (CollUtil.isNotEmpty(syncDataResponse.getOrderEntities())) {
|
|
|
|
|
try {
|
|
|
|
@ -371,11 +442,17 @@ public class DlBasicService {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("单据:").append(syncDataResponse.getOrderEntities().size()).append("条\n");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
batchSession.close();
|
|
|
|
|
spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
|
|
|
|
|
|
|
|
|
|
basicDownloadStatusEntity.setUpdateTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setEndTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setRemark(remark.toString());
|
|
|
|
|
basicDownloadService.updateDownloadStatus(basicDownloadStatusEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -410,7 +487,6 @@ public class DlBasicService {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void dlAllUDI() {
|
|
|
|
|
|
|
|
|
|
BaseResponse<List<BasicExportStatusEntity>> baseResponse = spGetHttp.getBasicStatus(BasicProcessStatus.NEW_ALL_DI + "");
|
|
|
|
|
List<BasicExportStatusEntity> pageSimpleResponse = baseResponse.getData();
|
|
|
|
|
if (pageSimpleResponse != null) {
|
|
|
|
@ -423,6 +499,18 @@ public class DlBasicService {
|
|
|
|
|
});
|
|
|
|
|
if (response.getCode() == 20000 && response.getData() != null) {
|
|
|
|
|
SpSyncUdiResponse spSyncUdiResponse = response.getData();
|
|
|
|
|
|
|
|
|
|
BasicDownloadStatusEntity basicDownloadStatusEntity = new BasicDownloadStatusEntity();
|
|
|
|
|
basicDownloadStatusEntity.setId(spSyncUdiResponse.getTaskId());
|
|
|
|
|
basicDownloadStatusEntity.setStartTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setIdDatas(ConstantStatus.SYNC_DOWNLOAD_DI);
|
|
|
|
|
basicDownloadStatusEntity.setStatus(0); //下载中
|
|
|
|
|
basicDownloadStatusEntity.setType(BasicProcessStatus.NEW_ALL_DI);
|
|
|
|
|
basicDownloadStatusEntity.setScheduleType(1);
|
|
|
|
|
|
|
|
|
|
basicDownloadService.insertDownloadStatus(basicDownloadStatusEntity);
|
|
|
|
|
StringBuffer remark = new StringBuffer();
|
|
|
|
|
|
|
|
|
|
SqlSession batchSession = sqlSessionFactory.openSession(ExecutorType.BATCH, TransactionIsolationLevel.READ_COMMITTED);
|
|
|
|
|
if (CollUtil.isNotEmpty(spSyncUdiResponse.getUdiCompanyEntities())) {
|
|
|
|
|
List<UdiCompanyEntity> udiCompanyEntities = spSyncUdiResponse.getUdiCompanyEntities();
|
|
|
|
@ -431,6 +519,7 @@ public class DlBasicService {
|
|
|
|
|
mapper.insertUdiCompany(udiCompanyEntity);
|
|
|
|
|
}
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("公司信息:").append(spSyncUdiResponse.getUdiCompanyEntities().size()).append("条\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (CollUtil.isNotEmpty(spSyncUdiResponse.getProductInfoEntityList())) {
|
|
|
|
@ -440,9 +529,15 @@ public class DlBasicService {
|
|
|
|
|
mapper.insertProductInfo(productInfoEntity);
|
|
|
|
|
}
|
|
|
|
|
batchSession.commit();
|
|
|
|
|
remark.append("产品信息:").append(spSyncUdiResponse.getProductInfoEntityList().size()).append("条\n");
|
|
|
|
|
}
|
|
|
|
|
batchSession.close();
|
|
|
|
|
spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
|
|
|
|
|
|
|
|
|
|
basicDownloadStatusEntity.setUpdateTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setEndTime(new Date());
|
|
|
|
|
basicDownloadStatusEntity.setRemark(remark.toString());
|
|
|
|
|
basicDownloadService.updateDownloadStatus(basicDownloadStatusEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -450,7 +545,6 @@ public class DlBasicService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|