|
|
|
@ -13,10 +13,7 @@ import com.glxp.api.req.basic.ProductInfoFilterRequest;
|
|
|
|
|
import com.glxp.api.req.basic.UdiCompanyRequest;
|
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.res.basic.BasicUdiRelResponse;
|
|
|
|
|
import com.glxp.api.service.basic.BasicUdiRelService;
|
|
|
|
|
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.service.basic.*;
|
|
|
|
|
import com.glxp.api.util.udi.FilterUdiUtils;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
@ -38,12 +35,93 @@ public class UdiSyncController {
|
|
|
|
|
UdiCompanyService udiCompanyService;
|
|
|
|
|
@Resource
|
|
|
|
|
BasicUdiRelService basicUdiRelService;
|
|
|
|
|
@Resource
|
|
|
|
|
BasicUdiProductService basicUdiProductService;
|
|
|
|
|
|
|
|
|
|
//获取同步库UDI信息
|
|
|
|
|
@ApiIgnore
|
|
|
|
|
@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);
|
|
|
|
|
return udiDlDeviceResponse;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error(e.getMessage(), e);
|
|
|
|
|
return ResultVOUtils.error(500, "连接UDI数据下载服务出错!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取同步库UDI信息
|
|
|
|
|
@ApiIgnore
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("udiwms/udiinfo/dict/filter")
|
|
|
|
|
public BaseResponse filterDict(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) {
|
|
|
|
|
Boolean isExit = basicUdiProductService.isExit(productInfoEntity.getUuid());
|
|
|
|
|
if (isExit) {
|
|
|
|
|
productInfoEntity.setCheck(true);
|
|
|
|
|
} else
|
|
|
|
|
productInfoEntity.setCheck(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return udiDlDeviceResponse;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error(e.getMessage(), e);
|
|
|
|
|
return ResultVOUtils.error(500, "连接UDI数据下载服务出错!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取同步库UDI信息
|
|
|
|
|
@ApiIgnore
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("udiwms/udiinfo/rel/filter")
|
|
|
|
|
public BaseResponse filterRel(FilterUdiRelRequest filterUdiRelRequest) {
|
|
|
|
|
String nameCode;
|
|
|
|
|
if (StrUtil.isNotEmpty(filterUdiRelRequest.getUdiCode())) {
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(filterUdiRelRequest.getUdiCode());
|
|
|
|
|