|
|
|
@ -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,6 +14,7 @@ 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;
|
|
|
|
@ -356,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码格式错误!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|