|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.glxp.udidl.admin.controller.device;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
|
|
|
@ -13,10 +14,12 @@ import com.glxp.udidl.admin.req.UdiCompanyRequest;
|
|
|
|
|
import com.glxp.udidl.admin.res.BaseResponse;
|
|
|
|
|
import com.glxp.udidl.admin.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.udidl.admin.res.udid.ProductInfoResponse;
|
|
|
|
|
import com.glxp.udidl.admin.res.udid.VailUdiReponse;
|
|
|
|
|
import com.glxp.udidl.admin.service.inout.ProductInfoService;
|
|
|
|
|
import com.glxp.udidl.admin.service.udi.UdiCompanyService;
|
|
|
|
|
import com.glxp.udidl.admin.util.BeanUtils;
|
|
|
|
|
import com.glxp.udidl.admin.util.FilterUdiUtils;
|
|
|
|
|
import com.glxp.udidl.admin.util.RedisUtil;
|
|
|
|
|
import com.glxp.udidl.admin.util.ResultVOUtils;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
|
@ -39,12 +42,15 @@ public class ProductInfoController {
|
|
|
|
|
ProductInfoService productInfoService;
|
|
|
|
|
@Resource
|
|
|
|
|
UdiCompanyService udiCompanyService;
|
|
|
|
|
@Resource
|
|
|
|
|
RedisUtil redisUtil;
|
|
|
|
|
|
|
|
|
|
//手持枪扫码查询
|
|
|
|
|
@ApiOperation(value = "手持枪扫码查询", response = ProductInfoEntity.class)
|
|
|
|
|
@AuthRuleAnnotation("udidl/device/findBydi")
|
|
|
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "nameCode", value = "UDI码", required = true)})
|
|
|
|
|
@GetMapping("udidl/device/findBydi")
|
|
|
|
|
|
|
|
|
|
public BaseResponse findProductInfo(String nameCode) {
|
|
|
|
|
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
|
|
|
|
|
String key = nameCode;
|
|
|
|
@ -131,7 +137,7 @@ public class ProductInfoController {
|
|
|
|
|
@GetMapping("udidl/udiwms/syncUdi")
|
|
|
|
|
public BaseResponse syncUdi(SyncUdiRequest syncUdiRequest) {
|
|
|
|
|
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
|
|
|
|
|
BeanUtils.copyProperties(productInfoFilterRequest, syncUdiRequest);
|
|
|
|
|
BeanUtils.copyProperties(syncUdiRequest, productInfoFilterRequest);
|
|
|
|
|
if (productInfoFilterRequest.getPage() == null || productInfoFilterRequest.getLimit() == null)
|
|
|
|
|
return ResultVOUtils.error(500, "分页参数不能为空");
|
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.syncDlUdi(productInfoFilterRequest);
|
|
|
|
@ -200,6 +206,8 @@ public class ProductInfoController {
|
|
|
|
|
@AuthRuleAnnotation("udidl/device/filterAllUdi")
|
|
|
|
|
@GetMapping("udidl/device/filterAllUdi")
|
|
|
|
|
public BaseResponse filterAllUdi(ProductInfoFilterRequest productInfoFilterRequest) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//过滤--1.参数不能全未空
|
|
|
|
|
if ((productInfoFilterRequest.getYlqxzcrbarmc() == null || productInfoFilterRequest.getYlqxzcrbarmc().equals("")) &&
|
|
|
|
|
(productInfoFilterRequest.getCpmctymc() == null || productInfoFilterRequest.getCpmctymc().equals("")) &&
|
|
|
|
@ -238,11 +246,23 @@ public class ProductInfoController {
|
|
|
|
|
return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
|
|
|
|
|
}
|
|
|
|
|
productInfoFilterRequest.setIsNewest(1);
|
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);
|
|
|
|
|
PageInfo<ProductInfoEntity> pageInfo;
|
|
|
|
|
pageInfo = new PageInfo<>(productInfoEntityList);
|
|
|
|
|
|
|
|
|
|
String keyCache = productInfoFilterRequest.toCacheKey();
|
|
|
|
|
if (StrUtil.isEmpty(keyCache)) {
|
|
|
|
|
return ResultVOUtils.error(500, "查询条件不能为空!");
|
|
|
|
|
}
|
|
|
|
|
String totalStr = (String) redisUtil.get(keyCache);
|
|
|
|
|
long total = 0;
|
|
|
|
|
if (StrUtil.isEmpty(totalStr)) {
|
|
|
|
|
total = productInfoService.filterUdiNoPageCount(productInfoFilterRequest);
|
|
|
|
|
redisUtil.set(keyCache, total + "");
|
|
|
|
|
} else {
|
|
|
|
|
total = Long.parseLong(totalStr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdiNoPage(productInfoFilterRequest);
|
|
|
|
|
PageSimpleResponse<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
|
pageSimpleResponse.setTotal(total);
|
|
|
|
|
pageSimpleResponse.setList(productInfoEntityList);
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
@ -287,11 +307,22 @@ public class ProductInfoController {
|
|
|
|
|
return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
|
|
|
|
|
}
|
|
|
|
|
productInfoFilterRequest.setIsNewest(1);
|
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);
|
|
|
|
|
PageInfo<ProductInfoEntity> pageInfo;
|
|
|
|
|
pageInfo = new PageInfo<>(productInfoEntityList);
|
|
|
|
|
|
|
|
|
|
String keyCache = productInfoFilterRequest.toCacheKey();
|
|
|
|
|
if (StrUtil.isEmpty(keyCache)) {
|
|
|
|
|
return ResultVOUtils.error(500, "查询条件不能为空!");
|
|
|
|
|
}
|
|
|
|
|
String totalStr = (String) redisUtil.get(keyCache);
|
|
|
|
|
long total = 0;
|
|
|
|
|
if (StrUtil.isEmpty(totalStr)) {
|
|
|
|
|
total = productInfoService.filterUdiNoPageCount(productInfoFilterRequest);
|
|
|
|
|
redisUtil.set(keyCache, total + "");
|
|
|
|
|
} else {
|
|
|
|
|
total = Long.parseLong(totalStr);
|
|
|
|
|
}
|
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdiNoPage(productInfoFilterRequest);
|
|
|
|
|
PageSimpleResponse<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
|
pageSimpleResponse.setTotal(total);
|
|
|
|
|
pageSimpleResponse.setList(productInfoEntityList);
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
@ -327,4 +358,66 @@ public class ProductInfoController {
|
|
|
|
|
return ResultVOUtils.success(productInfoService.findLastVersion(productInfoFilterRequest));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "校验UDI完整性", response = ProductInfoEntity.class)
|
|
|
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "code", value = "UDI码", required = true)})
|
|
|
|
|
@GetMapping("udidl/device/vailUdiCode")
|
|
|
|
|
public BaseResponse vailUdiCode(String code) {
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(code)) {
|
|
|
|
|
return ResultVOUtils.error(500, "查询条件不能为空!");
|
|
|
|
|
}
|
|
|
|
|
UdiEntity udiEntity = FilterUdiUtils.getUdi(code);
|
|
|
|
|
if (udiEntity == null) {
|
|
|
|
|
return ResultVOUtils.error(500, "UDI码格式错误!");
|
|
|
|
|
} else {
|
|
|
|
|
if (StrUtil.isNotEmpty(udiEntity.getUdi())) {
|
|
|
|
|
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
|
|
|
|
|
productInfoFilterRequest.setNameCode(udiEntity.getUdi());
|
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterProductInfo(productInfoFilterRequest);
|
|
|
|
|
if (CollUtil.isEmpty(productInfoEntityList)) {
|
|
|
|
|
return ResultVOUtils.error(500, "未查询到该UDI码国家库产品信息!");
|
|
|
|
|
} else {
|
|
|
|
|
ProductInfoEntity productInfoEntity = productInfoEntityList.get(0);
|
|
|
|
|
String lostMsg = "";
|
|
|
|
|
boolean checkSuccess = true;
|
|
|
|
|
if ("是".equals(productInfoEntity.getScbssfbhph()) && StrUtil.isEmpty(udiEntity.getBatchNo())) {
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
lostMsg = lostMsg + ",批次号";
|
|
|
|
|
}
|
|
|
|
|
if ("是".equals(productInfoEntity.getScbssfbhscrq()) && StrUtil.isEmpty(udiEntity.getProduceDate())) {
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
lostMsg = lostMsg + ",生产日期";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ("是".equals(productInfoEntity.getScbssfbhsxrq()) && StrUtil.isEmpty(udiEntity.getExpireDate())) {
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
lostMsg = lostMsg + ",失效日期";
|
|
|
|
|
}
|
|
|
|
|
if (("是".equals(productInfoEntity.getScbssfbhxlh()) && StrUtil.isEmpty(udiEntity.getSerialNo()))
|
|
|
|
|
) {
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
lostMsg = lostMsg + ",序列号";
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isNotEmpty(udiEntity.getSerialNo()) && udiEntity.getSerialNo().length() > 20) {
|
|
|
|
|
return ResultVOUtils.error(504, "序列号超出20位!");
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isNotEmpty(udiEntity.getBatchNo()) && udiEntity.getBatchNo().length() > 20) {
|
|
|
|
|
return ResultVOUtils.error(504, "批次号超出20位!");
|
|
|
|
|
}
|
|
|
|
|
if (StrUtil.isEmpty(udiEntity.getSerialNo()) && StrUtil.isEmpty(udiEntity.getBatchNo())) {
|
|
|
|
|
checkSuccess = false;
|
|
|
|
|
}
|
|
|
|
|
if (checkSuccess) {
|
|
|
|
|
return ResultVOUtils.success(productInfoEntity);
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(500, "UDI码格式错误,缺少"+lostMsg.substring(1));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return ResultVOUtils.error(500, "UDI码格式错误!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|