同步库bug修复

master
anthonyywj2 3 years ago
parent 644d4ba97e
commit 694dbfc1f5

@ -2,8 +2,13 @@ package com.glxp.udidl.admin.controller.device;
import com.alibaba.fastjson.JSONObject;
import com.glxp.udidl.admin.dao.udi.ProductInfoDao;
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
import com.glxp.udidl.admin.entity.udi.UdiCompanyEntity;
import com.glxp.udidl.admin.entity.udid.Contactlist;
import com.glxp.udidl.admin.entity.udid.Device;
import com.glxp.udidl.admin.req.ListPageRequest;
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
import com.glxp.udidl.admin.req.UdiCompanyRequest;
import com.glxp.udidl.admin.service.DataSync.DeviceSyncService;
import com.glxp.udidl.admin.service.DataSync.UdplatDownloadService;
import com.glxp.udidl.admin.service.DataSync.UdplatSyncService;
@ -23,6 +28,7 @@ import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
@RestController
@ -150,4 +156,41 @@ public class TestController {
public JSONObject getDistributeOrderDetails(Long orderId) {
return udplatDownloadService.getDistributeOrderDetails(orderId);
}
@GetMapping("/test/transferUdiCompany")
public BaseResponse transferUdiCompany(String nameCode) {
//更新为最新版本
ProductInfoFilterRequest filterRequest1 = new ProductInfoFilterRequest();
filterRequest1.setNameCode(nameCode);
List<ProductInfoEntity> updateEntitys = productInfoService.filterUdi(filterRequest1);
ProductInfoEntity productInfoEntity;
if (updateEntitys != null && updateEntitys.size() > 0) {
//获取最高版本号
productInfoEntity = updateEntitys.get(0);
//更新厂家信息,
UdiCompanyRequest udiCompanyRequest = new UdiCompanyRequest();
udiCompanyRequest.setTyshxydm(productInfoEntity.getTyshxydm());
List<UdiCompanyEntity> udiCompanyEntitys = udiCompanyService.filterUdiCompany(udiCompanyRequest);
if (udiCompanyEntitys == null || udiCompanyEntitys.size() == 0) {
UdiCompanyEntity udiCompanyEntity = new UdiCompanyEntity();
udiCompanyEntity.setTyshxydm(productInfoEntity.getTyshxydm());
udiCompanyEntity.setUpdateTime(new Date());
udiCompanyEntity.setYlqxzcrbarywmc(productInfoEntity.getYlqxzcrbarywmc());
udiCompanyEntity.setYlqxzcrbarmc(productInfoEntity.getYlqxzcrbarmc());
List<Contactlist> contactlists = udiCompanyService.selectContactBykey(productInfoEntity.getDeviceRecordKey());
if (contactlists != null && contactlists.size() > 0) {
udiCompanyEntity.setQylxrcz(contactlists.get(0).getQylxrcz());
udiCompanyEntity.setQylxrdh(contactlists.get(0).getQylxrdh());
udiCompanyEntity.setQylxryx(contactlists.get(0).getQylxryx());
}
udiCompanyEntity.setUpdateTime(new Date());
udiCompanyService.insertUdiCompany(udiCompanyEntity);
return ResultVOUtils.success(udiCompanyEntity);
}
}
return ResultVOUtils.error(500, "未查询到数据");
}
}

@ -185,10 +185,16 @@ public class DeviceSyncService {
DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId);
if (result1.getReturnCode() != 1)
return ResultVOUtils.error(-1, result1.getReturnMsg());
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(result1.getDataSet());
deviceSaveService.DeviceSave(dataSets, new Date());
productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
if(CollUtil.isNotEmpty(result1.getDataSet().getDeviceInfo()) ){
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
dataSets.add(result1.getDataSet());
deviceSaveService.DeviceSave(dataSets, new Date());
productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
}else {
return ResultVOUtils.error(501,"医疗器械唯一标识数据库未找到此产品DI,请检查是否输入正确或联系厂家是否已上传");
}
}
return ResultVOUtils.success(productInfoEntityList);
}

@ -181,9 +181,6 @@ public class UdiTransferUtils {
update.setUpdateTime(new Date());
productInfoService.updateProductInfo(update);
}
// updateEntity.setIsNewest(true);
// updateEntity.setUpdateTime(new Date());
// productInfoService.updateProductInfo(updateEntity);
}
//更新厂家信息,

@ -3,8 +3,8 @@ server.port=9994
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.jdbc-url=jdbc:mysql://127.0.0.1:3306/udidl_test?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
spring.datasource.username=root
spring.datasource.password=mysql@2020
#spring.datasource.password=123456
#spring.datasource.password=mysql@2020
spring.datasource.password=123456
server.servlet.context-path=
logging.level.com.glxp.udidl.admin.dao=debug
# 跨域设置
@ -14,7 +14,7 @@ cors.allowed-methods=GET,POST,OPTIONS
#mips服务地址
UDIC_MIPSDOWNLOAD_URL = http://127.0.0.1:8080/UDIC_MIPSDL_Server
#UDIC_MIPSDOWNLOAD_URL=http://127.0.0.1:9997
config.downloadPath=E:/temp
config.downloadPath=D:/temp
config.openAuth=false
spring.servlet.multipart.max-file-size=100MB
spring.servlet.multipart.max-request-size=1000MB

Loading…
Cancel
Save