优化UDI查询

master
anthonyywj2 2 years ago
parent 4977f8f52f
commit 986eb2132a

@ -50,13 +50,13 @@ public class ProductInfoController {
@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;
if (key != null) {
key = FilterUdiUtils.getDiStr(key);
productInfoFilterRequest.setNameCode(key);
productInfoFilterRequest.setIsNewest(1);
}
if (StrUtil.isEmpty(productInfoFilterRequest.getNameCode())) {
return ResultVOUtils.error(500, "UDI码不能为空");
@ -99,6 +99,7 @@ public class ProductInfoController {
if (udiEntity == null) {
return ResultVOUtils.error(500, "UDI码格式错误");
}
productInfoFilterRequest.setIsNewest(1);
productInfoFilterRequest.setNameCode(udiEntity.getUdi());
List<ProductInfoEntity> productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
ProductInfoResponse productInfoResponse = new ProductInfoResponse();
@ -192,6 +193,10 @@ public class ProductInfoController {
}
}
productInfoFilterRequest.setIsNewest(1);
if (StrUtil.isEmpty(productInfoFilterRequest.getNameCode())) {
productInfoFilterRequest.setDiType("1");
}
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);
PageInfo<ProductInfoEntity> pageInfo;
pageInfo = new PageInfo<>(productInfoEntityList);
@ -228,7 +233,6 @@ public class ProductInfoController {
return ResultVOUtils.error(500, "请输入完整的医疗器械注册备案人名称!");
}
if ((productInfoFilterRequest.getYlqxzcrbarmc() == null || productInfoFilterRequest.getYlqxzcrbarmc().equals(""))
&& (productInfoFilterRequest.getNameCode() == null || productInfoFilterRequest.getNameCode().equals(""))
&& (productInfoFilterRequest.getCpmctymc() == null || productInfoFilterRequest.getCpmctymc().equals(""))
@ -247,6 +251,7 @@ public class ProductInfoController {
}
productInfoFilterRequest.setIsNewest(1);
String keyCache = productInfoFilterRequest.toCacheKey();
if (StrUtil.isEmpty(keyCache)) {
return ResultVOUtils.error(500, "查询条件不能为空!");
@ -259,7 +264,9 @@ public class ProductInfoController {
} else {
total = Long.parseLong(totalStr);
}
if (StrUtil.isEmpty(productInfoFilterRequest.getNameCode())) {
productInfoFilterRequest.setDiType("1");
}
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdiNoPage(productInfoFilterRequest);
PageSimpleResponse<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(total);
@ -411,7 +418,7 @@ public class ProductInfoController {
if (checkSuccess) {
return ResultVOUtils.success(productInfoEntity);
} else {
return ResultVOUtils.error(500, "UDI码格式错误,缺少"+lostMsg.substring(1));
return ResultVOUtils.error(500, "UDI码格式错误,缺少" + lostMsg.substring(1));
}
}
} else {

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

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

Loading…
Cancel
Save