|
|
@ -17,6 +17,7 @@ import com.glxp.udidl.admin.service.inout.ProductInfoService;
|
|
|
|
import com.glxp.udidl.admin.service.udi.UdiCompanyService;
|
|
|
|
import com.glxp.udidl.admin.service.udi.UdiCompanyService;
|
|
|
|
import com.glxp.udidl.admin.util.BeanUtils;
|
|
|
|
import com.glxp.udidl.admin.util.BeanUtils;
|
|
|
|
import com.glxp.udidl.admin.util.FilterUdiUtils;
|
|
|
|
import com.glxp.udidl.admin.util.FilterUdiUtils;
|
|
|
|
|
|
|
|
import com.glxp.udidl.admin.util.RedisUtil;
|
|
|
|
import com.glxp.udidl.admin.util.ResultVOUtils;
|
|
|
|
import com.glxp.udidl.admin.util.ResultVOUtils;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
@ -39,12 +40,15 @@ public class ProductInfoController {
|
|
|
|
ProductInfoService productInfoService;
|
|
|
|
ProductInfoService productInfoService;
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
UdiCompanyService udiCompanyService;
|
|
|
|
UdiCompanyService udiCompanyService;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
RedisUtil redisUtil;
|
|
|
|
|
|
|
|
|
|
|
|
//手持枪扫码查询
|
|
|
|
//手持枪扫码查询
|
|
|
|
@ApiOperation(value = "手持枪扫码查询", response = ProductInfoEntity.class)
|
|
|
|
@ApiOperation(value = "手持枪扫码查询", response = ProductInfoEntity.class)
|
|
|
|
@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;
|
|
|
@ -200,6 +204,8 @@ public class ProductInfoController {
|
|
|
|
@AuthRuleAnnotation("udidl/device/filterAllUdi")
|
|
|
|
@AuthRuleAnnotation("udidl/device/filterAllUdi")
|
|
|
|
@GetMapping("udidl/device/filterAllUdi")
|
|
|
|
@GetMapping("udidl/device/filterAllUdi")
|
|
|
|
public BaseResponse filterAllUdi(ProductInfoFilterRequest productInfoFilterRequest) {
|
|
|
|
public BaseResponse filterAllUdi(ProductInfoFilterRequest productInfoFilterRequest) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//过滤--1.参数不能全未空
|
|
|
|
//过滤--1.参数不能全未空
|
|
|
|
if ((productInfoFilterRequest.getYlqxzcrbarmc() == null || productInfoFilterRequest.getYlqxzcrbarmc().equals("")) &&
|
|
|
|
if ((productInfoFilterRequest.getYlqxzcrbarmc() == null || productInfoFilterRequest.getYlqxzcrbarmc().equals("")) &&
|
|
|
|
(productInfoFilterRequest.getCpmctymc() == null || productInfoFilterRequest.getCpmctymc().equals("")) &&
|
|
|
|
(productInfoFilterRequest.getCpmctymc() == null || productInfoFilterRequest.getCpmctymc().equals("")) &&
|
|
|
@ -238,11 +244,23 @@ public class ProductInfoController {
|
|
|
|
return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
|
|
|
|
return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
productInfoFilterRequest.setIsNewest(1);
|
|
|
|
productInfoFilterRequest.setIsNewest(1);
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);
|
|
|
|
|
|
|
|
PageInfo<ProductInfoEntity> pageInfo;
|
|
|
|
String keyCache = productInfoFilterRequest.toCacheKey();
|
|
|
|
pageInfo = new PageInfo<>(productInfoEntityList);
|
|
|
|
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<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
pageSimpleResponse.setTotal(total);
|
|
|
|
pageSimpleResponse.setList(productInfoEntityList);
|
|
|
|
pageSimpleResponse.setList(productInfoEntityList);
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -287,11 +305,22 @@ public class ProductInfoController {
|
|
|
|
return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
|
|
|
|
return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
productInfoFilterRequest.setIsNewest(1);
|
|
|
|
productInfoFilterRequest.setIsNewest(1);
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);
|
|
|
|
|
|
|
|
PageInfo<ProductInfoEntity> pageInfo;
|
|
|
|
String keyCache = productInfoFilterRequest.toCacheKey();
|
|
|
|
pageInfo = new PageInfo<>(productInfoEntityList);
|
|
|
|
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<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
pageSimpleResponse.setTotal(total);
|
|
|
|
pageSimpleResponse.setList(productInfoEntityList);
|
|
|
|
pageSimpleResponse.setList(productInfoEntityList);
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
}
|
|
|
|
}
|
|
|
|