|
|
|
|
package com.glxp.api.controller.basic;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.glxp.api.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.constant.AsyncDiDlHelper;
|
|
|
|
|
import com.glxp.api.entity.basic.ProductInfoEntity;
|
|
|
|
|
import com.glxp.api.entity.basic.UdiCompanyEntity;
|
|
|
|
|
import com.glxp.api.entity.basic.UdiEntity;
|
|
|
|
|
import com.glxp.api.entity.basic.UdiProductEntity;
|
|
|
|
|
import com.glxp.api.entity.basic.UdiRelevanceEntity;
|
|
|
|
|
import com.glxp.api.req.basic.FilterUdiRelRequest;
|
|
|
|
|
import com.glxp.api.req.basic.ProductInfoFilterRequest;
|
|
|
|
|
import com.glxp.api.req.basic.UdiCompanyRequest;
|
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.service.basic.ProductInfoService;
|
|
|
|
|
import com.glxp.api.service.basic.SyncUdiService;
|
|
|
|
|
import com.glxp.api.service.basic.UdiCompanyService;
|
|
|
|
|
import com.glxp.api.util.udi.FilterUdiUtils;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 国家库产品信息相关接口
|
|
|
|
|
*/
|
|
|
|
|
@Slf4j
|
|
|
|
|
@RestController
|
|
|
|
|
public class UdiSyncController {
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
SyncUdiService syncUdiService;
|
|
|
|
|
@Resource
|
|
|
|
|
AsyncDiDlHelper asyncDiDlHelper;
|
|
|
|
|
@Resource
|
|
|
|
|
ProductInfoService productInfoService;
|
|
|
|
|
@Resource
|
|
|
|
|
UdiCompanyService udiCompanyService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取同步库UDI信息
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("udiwms/udiinfo/filterUdi")
|
|
|
|
|
public BaseResponse filterUdi(FilterUdiRelRequest filterUdiRelRequest) {
|
|
|
|
|
String nameCode;
|
|
|
|
|
if (StrUtil.isNotEmpty(filterUdiRelRequest.getUdiCode())) {
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(filterUdiRelRequest.getUdiCode());
|
|
|
|
|
if (udiEntity != null) {
|
|
|
|
|
nameCode = udiEntity.getUdi();
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(500, "无效UDI码!");
|
|
|
|
|
}
|
|
|
|
|
} else
|
|
|
|
|
nameCode = filterUdiRelRequest.getNameCode();
|
|
|
|
|
|
|
|
|
|
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
|
|
|
|
|
BeanUtils.copyProperties(filterUdiRelRequest, productInfoFilterRequest);
|
|
|
|
|
if (StrUtil.isNotEmpty(nameCode)) {
|
|
|
|
|
productInfoFilterRequest.setNameCode(nameCode);
|
|
|
|
|
} else {
|
|
|
|
|
productInfoFilterRequest.setDiType("1");
|
|
|
|
|
}
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<PageSimpleResponse<ProductInfoEntity>> udiDlDeviceResponse = syncUdiService.filterUdi(productInfoFilterRequest);
|
|
|
|
|
if (udiDlDeviceResponse.getCode() == 20000) {
|
|
|
|
|
if (filterUdiRelRequest.getIsCheck() != null && filterUdiRelRequest.getIsCheck()) {
|
|
|
|
|
List<ProductInfoEntity> productInfoEntities = udiDlDeviceResponse.getData().getList();
|
|
|
|
|
if (productInfoEntities != null && productInfoEntities.size() > 0) {
|
|
|
|
|
for (ProductInfoEntity productInfoEntity : productInfoEntities) {
|
|
|
|
|
// List<UdiRelevanceEntity> udiRelevanceEntities = udiRelevanceService.selectByUuid(productInfoEntity.getUuid());
|
|
|
|
|
// if (udiRelevanceEntities != null && udiRelevanceEntities.size() > 0) {
|
|
|
|
|
// for (UdiRelevanceEntity udiRelevanceEntity : udiRelevanceEntities) {
|
|
|
|
|
// if (udiRelevanceEntity.getThirdId() == null &&
|
|
|
|
|
// udiRelevanceEntity.getThirdId2() == null && udiRelevanceEntity.getThirdId1() == null &&
|
|
|
|
|
// udiRelevanceEntity.getThirdId3() == null && udiRelevanceEntity.getThirdId4() == null) {
|
|
|
|
|
// //不能添加
|
|
|
|
|
// productInfoEntity.setCheck(true);
|
|
|
|
|
// break;
|
|
|
|
|
// } else
|
|
|
|
|
// productInfoEntity.setCheck(false);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// } else {
|
|
|
|
|
// productInfoEntity.setCheck(false);
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return udiDlDeviceResponse;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error(e.getMessage(), e);
|
|
|
|
|
return ResultVOUtils.error(500, "连接UDI数据下载服务出错!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取同步库医疗器械注册人信息
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("udiwms/udiinfo/filterCompany")
|
|
|
|
|
public BaseResponse filterCompany(UdiCompanyRequest udiCompanyRequest) {
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse<PageSimpleResponse<UdiCompanyEntity>> udiDlDeviceResponse = syncUdiService.filterCompany(udiCompanyRequest);
|
|
|
|
|
return udiDlDeviceResponse;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
return ResultVOUtils.error(500, "连接UDI数据下载服务出错!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//出入库同步下载
|
|
|
|
|
@GetMapping("udidl/udiwms/syncUdi")
|
|
|
|
|
public BaseResponse syncUdi(ProductInfoFilterRequest productInfoFilterRequest) {
|
|
|
|
|
|
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.syncDlUdi(productInfoFilterRequest);
|
|
|
|
|
return ResultVOUtils.success(productInfoEntityList);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//出入库同步下载
|
|
|
|
|
@GetMapping("udidl/udiwms/syncCompany")
|
|
|
|
|
public BaseResponse syncCompany(UdiCompanyRequest udiCompanyRequest) {
|
|
|
|
|
|
|
|
|
|
List<UdiCompanyEntity> udiCompanyEntities = udiCompanyService.syncDlCompany(udiCompanyRequest);
|
|
|
|
|
return ResultVOUtils.success(udiCompanyEntities);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|