优化UDI查询

master
anthonyywj2 2 years ago
parent 4977f8f52f
commit 986eb2132a

@ -50,13 +50,13 @@ public class ProductInfoController {
@AuthRuleAnnotation("udidl/device/findBydi") @AuthRuleAnnotation("udidl/device/findBydi")
@ApiImplicitParams({@ApiImplicitParam(name = "nameCode", value = "UDI码", required = true)}) @ApiImplicitParams({@ApiImplicitParam(name = "nameCode", value = "UDI码", required = true)})
@GetMapping("udidl/device/findBydi") @GetMapping("udidl/device/findBydi")
public BaseResponse findProductInfo(String nameCode) { public BaseResponse findProductInfo(String nameCode) {
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest(); ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
String key = nameCode; String key = nameCode;
if (key != null) { if (key != null) {
key = FilterUdiUtils.getDiStr(key); key = FilterUdiUtils.getDiStr(key);
productInfoFilterRequest.setNameCode(key); productInfoFilterRequest.setNameCode(key);
productInfoFilterRequest.setIsNewest(1);
} }
if (StrUtil.isEmpty(productInfoFilterRequest.getNameCode())) { if (StrUtil.isEmpty(productInfoFilterRequest.getNameCode())) {
return ResultVOUtils.error(500, "UDI码不能为空"); return ResultVOUtils.error(500, "UDI码不能为空");
@ -99,6 +99,7 @@ public class ProductInfoController {
if (udiEntity == null) { if (udiEntity == null) {
return ResultVOUtils.error(500, "UDI码格式错误"); return ResultVOUtils.error(500, "UDI码格式错误");
} }
productInfoFilterRequest.setIsNewest(1);
productInfoFilterRequest.setNameCode(udiEntity.getUdi()); productInfoFilterRequest.setNameCode(udiEntity.getUdi());
List<ProductInfoEntity> productInfoEntityList = productInfoService.findAll(productInfoFilterRequest); List<ProductInfoEntity> productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
ProductInfoResponse productInfoResponse = new ProductInfoResponse(); ProductInfoResponse productInfoResponse = new ProductInfoResponse();
@ -192,6 +193,10 @@ public class ProductInfoController {
} }
} }
productInfoFilterRequest.setIsNewest(1); productInfoFilterRequest.setIsNewest(1);
if (StrUtil.isEmpty(productInfoFilterRequest.getNameCode())) {
productInfoFilterRequest.setDiType("1");
}
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest); List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);
PageInfo<ProductInfoEntity> pageInfo; PageInfo<ProductInfoEntity> pageInfo;
pageInfo = new PageInfo<>(productInfoEntityList); pageInfo = new PageInfo<>(productInfoEntityList);
@ -228,7 +233,6 @@ public class ProductInfoController {
return ResultVOUtils.error(500, "请输入完整的医疗器械注册备案人名称!"); return ResultVOUtils.error(500, "请输入完整的医疗器械注册备案人名称!");
} }
if ((productInfoFilterRequest.getYlqxzcrbarmc() == null || productInfoFilterRequest.getYlqxzcrbarmc().equals("")) if ((productInfoFilterRequest.getYlqxzcrbarmc() == null || productInfoFilterRequest.getYlqxzcrbarmc().equals(""))
&& (productInfoFilterRequest.getNameCode() == null || productInfoFilterRequest.getNameCode().equals("")) && (productInfoFilterRequest.getNameCode() == null || productInfoFilterRequest.getNameCode().equals(""))
&& (productInfoFilterRequest.getCpmctymc() == null || productInfoFilterRequest.getCpmctymc().equals("")) && (productInfoFilterRequest.getCpmctymc() == null || productInfoFilterRequest.getCpmctymc().equals(""))
@ -247,6 +251,7 @@ public class ProductInfoController {
} }
productInfoFilterRequest.setIsNewest(1); productInfoFilterRequest.setIsNewest(1);
String keyCache = productInfoFilterRequest.toCacheKey(); String keyCache = productInfoFilterRequest.toCacheKey();
if (StrUtil.isEmpty(keyCache)) { if (StrUtil.isEmpty(keyCache)) {
return ResultVOUtils.error(500, "查询条件不能为空!"); return ResultVOUtils.error(500, "查询条件不能为空!");
@ -259,7 +264,9 @@ public class ProductInfoController {
} else { } else {
total = Long.parseLong(totalStr); total = Long.parseLong(totalStr);
} }
if (StrUtil.isEmpty(productInfoFilterRequest.getNameCode())) {
productInfoFilterRequest.setDiType("1");
}
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdiNoPage(productInfoFilterRequest); List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdiNoPage(productInfoFilterRequest);
PageSimpleResponse<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>(); PageSimpleResponse<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(total); pageSimpleResponse.setTotal(total);

@ -2,7 +2,7 @@ server:
port: 9994 port: 9994
spring: spring:
profiles: profiles:
active: pro active: dev
jmx: jmx:
enabled: false enabled: false

@ -19,6 +19,9 @@
<if test="uuid != '' and uuid != null"> <if test="uuid != '' and uuid != null">
AND uuid = #{uuid} AND uuid = #{uuid}
</if> </if>
<if test="isNewest != null">
AND isNewest = #{isNewest}
</if>
<if test="deviceRecordKey != '' and deviceRecordKey != null"> <if test="deviceRecordKey != '' and deviceRecordKey != null">
AND deviceRecordKey = #{deviceRecordKey} AND deviceRecordKey = #{deviceRecordKey}
</if> </if>

Loading…
Cancel
Save