From 88f5003dd4cab31ae13f09519515cdc32a7527ca Mon Sep 17 00:00:00 2001 From: anthonyywj2 <353682448@qq.com> Date: Thu, 11 Aug 2022 17:50:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=B8=B8=E7=94=A8=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=EF=BC=8C=E6=96=B0=E5=A2=9E=E5=88=86=E7=B1=BB=E7=BC=96?= =?UTF-8?q?=E7=A0=81=E8=BD=AC=E5=88=86=E7=B1=BB=E5=90=8D=E7=A7=B0=EF=BC=8C?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E7=BB=93=E6=9E=84=E5=8F=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../auth/AuthUdiTokenController.java | 54 +++++ .../controller/device/DeviceController.java | 12 +- .../device/DownloadDeviceHelper.java | 133 ++--------- .../device/PosTaggerController.java | 4 + .../device/TestCompanyUdiController.java | 1 - .../controller/device/TestController.java | 44 ++-- .../admin/dao/udi/ProductClassifyMapper.java | 7 + .../entity/udi/ProductClassifyEntity.java | 13 ++ .../admin/entity/udi/ProductInfoEntity.java | 20 ++ .../udidl/admin/entity/udid/DeviceEntity.java | 50 +---- .../admin/res/udid/MedicalSingleResponse.java | 6 - .../dataSync/DeviceDownloadService.java | 25 ++- .../service/dataSync/DeviceSaveService.java | 2 +- .../service/info/impl/CompanyServiceImpl.java | 2 +- .../service/udi/ProductClassifyService.java | 10 + .../udi/impl/ProductClassifyServiceImpl.java | 23 ++ .../udidl/admin/thread/AsyncDownloadTask.java | 63 +----- .../udidl/admin/thread/UdiTransferTask.java | 147 ------------- .../udidl/admin/thread/UdiTransferUtils.java | 82 +++++-- .../mybatis/mapper/info/CompanyMapper.xml | 1 + .../mybatis/mapper/udi/ProductInfoMapper.xml | 208 ++++++++++-------- 21 files changed, 385 insertions(+), 522 deletions(-) create mode 100644 src/main/java/com/glxp/udidl/admin/controller/auth/AuthUdiTokenController.java create mode 100644 src/main/java/com/glxp/udidl/admin/dao/udi/ProductClassifyMapper.java create mode 100644 src/main/java/com/glxp/udidl/admin/entity/udi/ProductClassifyEntity.java create mode 100644 src/main/java/com/glxp/udidl/admin/service/udi/ProductClassifyService.java create mode 100644 src/main/java/com/glxp/udidl/admin/service/udi/impl/ProductClassifyServiceImpl.java delete mode 100644 src/main/java/com/glxp/udidl/admin/thread/UdiTransferTask.java diff --git a/src/main/java/com/glxp/udidl/admin/controller/auth/AuthUdiTokenController.java b/src/main/java/com/glxp/udidl/admin/controller/auth/AuthUdiTokenController.java new file mode 100644 index 0000000..69f185c --- /dev/null +++ b/src/main/java/com/glxp/udidl/admin/controller/auth/AuthUdiTokenController.java @@ -0,0 +1,54 @@ +package com.glxp.udidl.admin.controller.auth; + +import cn.hutool.core.util.StrUtil; +import com.glxp.udidl.admin.annotation.AuthRuleAnnotation; +import com.glxp.udidl.admin.entity.auth.AuthAdmin; +import com.glxp.udidl.admin.req.udid.TokenRequest; +import com.glxp.udidl.admin.res.BaseResponse; +import com.glxp.udidl.admin.res.auth.LoginUserInfoResponse; +import com.glxp.udidl.admin.service.dataSync.DeviceDownloadService; +import com.glxp.udidl.admin.util.ResultVOUtils; +import org.springframework.beans.BeanUtils; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RestController; + +import javax.annotation.Resource; +import javax.servlet.http.HttpServletRequest; +import java.util.List; + +@RestController +public class AuthUdiTokenController { + + + @Resource + DeviceDownloadService deviceDownloadService; + + + @AuthRuleAnnotation("") + @PostMapping("/admin/auth/udi/token") + public BaseResponse vailUdiToken(@RequestBody TokenRequest tokenRequest) { + + + if (StrUtil.isEmpty(tokenRequest.getTyshxydm())) { + return ResultVOUtils.error(500, "统一社会信用代码不能为空!"); + } + + if (StrUtil.isEmpty(tokenRequest.getAppId())) { + return ResultVOUtils.error(500, "appId不能为空!"); + } + + if (StrUtil.isEmpty(tokenRequest.getAppSecret())) { + return ResultVOUtils.error(500, "appSecret不能为空!"); + } + String data = deviceDownloadService.getTokenNow(tokenRequest); + if (data.contains("验证成功")) { + return ResultVOUtils.success("验证成功!"); + } else { + return ResultVOUtils.error(500, data); + } + + } + +} diff --git a/src/main/java/com/glxp/udidl/admin/controller/device/DeviceController.java b/src/main/java/com/glxp/udidl/admin/controller/device/DeviceController.java index 39a3a40..85f6cbf 100644 --- a/src/main/java/com/glxp/udidl/admin/controller/device/DeviceController.java +++ b/src/main/java/com/glxp/udidl/admin/controller/device/DeviceController.java @@ -41,11 +41,9 @@ public class DeviceController { @Resource private DevicedownloadMapper devicedownloadMapper; @Resource - CompanyService companyService; - @Resource ProductInfoService productInfoService; @Resource - UdiCompanyService udiCompanyService; + DownloadDeviceHelper downloadDeviceHelper; @ApiOperation(value = "查询医疗器械信息", response = DeviceEntity.class) @AuthRuleAnnotation("warehouse/device/list") @@ -186,7 +184,7 @@ public class DeviceController { @ApiOperation(value = "", hidden = true) @PostMapping("warehouse/device/loadsingle") public BaseResponse downLoadDiii(@RequestBody DeviceDiRequest deviceRequest) { - DownloadDeviceHelper downloadDeviceHelper = new DownloadDeviceHelper(companyService, udiCompanyService); + if (deviceRequest.getPrimaryDeviceId() == null) { return ResultVOUtils.error(999, "最小销售单元标识不能为空"); } @@ -209,7 +207,7 @@ public class DeviceController { @ApiOperation(value = "", hidden = true) @PostMapping("warehouse/device/downLoadHisory") public BaseResponse downLoadHisory(@RequestBody DeviceDiRequest deviceRequest) { - DownloadDeviceHelper downloadDeviceHelper = new DownloadDeviceHelper(companyService, udiCompanyService); + if (deviceRequest.getPrimaryDeviceId() == null) { return ResultVOUtils.error(999, "最小销售单元标识不能为空"); } @@ -224,7 +222,7 @@ public class DeviceController { keys.setDeviceRecordKey(deviceRecordKey); dataSetBeans.add(keys); deviceHistoryRequest.setDataSet(dataSetBeans); - int result = downloadDeviceHelper.downloadHistory(productInfoService, deviceHistoryRequest, deviceService); + int result = downloadDeviceHelper.downloadHistory(deviceHistoryRequest); if (result == -1) { return;// ResultVOUtils.error(505, "下载出错"); } @@ -237,7 +235,7 @@ public class DeviceController { @ApiOperation(value = "", hidden = true) @PostMapping("warehouse/device/loadudid") public BaseResponse downLoadAll(DownloadDeviceRequest downloadDeviceRequest, BindingResult bindingResult) { - DownloadDeviceHelper downloadDeviceHelper = new DownloadDeviceHelper(companyService, udiCompanyService); + if (bindingResult.hasErrors()) { return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage()); } diff --git a/src/main/java/com/glxp/udidl/admin/controller/device/DownloadDeviceHelper.java b/src/main/java/com/glxp/udidl/admin/controller/device/DownloadDeviceHelper.java index 6bd7b14..629780a 100644 --- a/src/main/java/com/glxp/udidl/admin/controller/device/DownloadDeviceHelper.java +++ b/src/main/java/com/glxp/udidl/admin/controller/device/DownloadDeviceHelper.java @@ -19,12 +19,16 @@ import com.glxp.udidl.admin.thread.UdiTransferUtils; import com.glxp.udidl.admin.util.DateUtil; import com.glxp.udidl.admin.util.HttpClient; import com.glxp.udidl.admin.util.WarehousBeanUtils; +import jdk.nashorn.internal.ir.annotations.Reference; +import org.springframework.stereotype.Service; +import javax.annotation.Resource; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.UUID; +@Service public class DownloadDeviceHelper { @@ -32,11 +36,16 @@ public class DownloadDeviceHelper { String url = ""; String appId; String appSecret; - final int pageSize = 400; - + @Resource UdiCompanyService udiCompanyService; - - public DownloadDeviceHelper(CompanyService companyService, UdiCompanyService udiCompanyService) { + @Resource + CompanyService companyService; + @Resource + UdiTransferUtils udiTransferUtils; + @Resource + DeviceService deviceService; + + public void DownloadDeviceHelper() { companyEntity = companyService.findCompany(); if (companyEntity != null && companyEntity.getClasses() != null) { if (companyEntity.getClasses().equals("1")) { @@ -47,7 +56,6 @@ public class DownloadDeviceHelper { appId = companyEntity.getAppId(); appSecret = companyEntity.getAppSecret(); } - this.udiCompanyService = udiCompanyService; } public TokenEntity getToken() { @@ -112,13 +120,13 @@ public class DownloadDeviceHelper { keys.setDeviceRecordKey(device.getDevicerecordkey()); dataSetBeans.add(keys); deviceHistoryRequest.setDataSet(dataSetBeans); - downloadHistory(productInfoService, deviceHistoryRequest, deviceService); + downloadHistory(deviceHistoryRequest); } else { device.setLastModifyTime(DateUtil.formatDateTime(new Date())); deviceService.insertDevice(device); } - new UdiTransferUtils().transUdi(deviceService, productInfoService, uuid, udiCompanyService); + udiTransferUtils.transUdi(uuid); List deviceclinicals = dataSetBean.getDeviceClinical(); List deviceclinicalList = new ArrayList<>(); if (deviceclinicalList != null && deviceclinicalList.size() > 0) { @@ -176,113 +184,8 @@ public class DownloadDeviceHelper { return result; } - public int simpleDownloadDevices(ProductInfoService productInfoService, DeviceService deviceService, DeviceRequest deviceRequest) { - String response = HttpClient.post(url, deviceRequest); - int result = -1; - List dataSetBeanList = null; - MedicalResonse medicalResonse = null; - if (url.equals("sharing/get")) { - medicalResonse = (MedicalResonse) JSONObject.parseObject(response, MedicalResonse.class); - result = medicalResonse.getReturnCode(); - dataSetBeanList = medicalResonse.getDataSet(); - } - - if (dataSetBeanList != null && dataSetBeanList.size() > 0) { - for (int i = 0; i < dataSetBeanList.size(); i++) { - DataSetBean dataSetBean = dataSetBeanList.get(i); - Device device = WarehousBeanUtils.responseToDevice(dataSetBean); - } - } - if (Integer.parseInt(deviceRequest.getCurrentPageNumber()) >= medicalResonse.getTotalPageCount()) { - return -1; - } - return result; - } - - //下载生产企业 - public int downloadProduct(ProductInfoService productInfoService, DeviceService deviceService, DeviceRequest deviceRequest) { - String response = HttpClient.post(url, deviceRequest); - MedicalHistoryResonse medicalResonse = (MedicalHistoryResonse) JSONObject.parseObject(response, MedicalHistoryResonse.class); - if (medicalResonse.getReturnCode() == 1) { - List dataSetBeanList = medicalResonse.getDataList(); - if (dataSetBeanList != null && dataSetBeanList.size() > 0) { - for (int i = 0; i < dataSetBeanList.size(); i++) { - DataSetBean dataSetBean = dataSetBeanList.get(i); - Device device = WarehousBeanUtils.responseToDevice(dataSetBean); - if (deviceService.selectisSame(device.getDevicerecordkey(), device.getVersionnumber()) == null) { - if (device.getBssjzt() != null && device.getBssjzt().equals("草稿")) { - //草稿数据忽略 - } else { - String uuid = getUUId(); - device.setUuid(uuid); - String versionNum = device.getVersionnumber(); - //如果版本号大于1,说明是新增,则更新历史记录 - if (versionNum != null && Integer.parseInt(versionNum) > 1) { - deviceService.deleteHistory(device.getDevicerecordkey()); - DownloadHistoryRequest deviceHistoryRequest = new DownloadHistoryRequest(); - deviceHistoryRequest.setAccessToken(deviceRequest.getAccessToken()); - deviceHistoryRequest.setCurrentPageNumber("1"); - List dataSetBeans = new ArrayList<>(); - DownloadHistoryRequest.DataSetBean keys = new DownloadHistoryRequest.DataSetBean(); - keys.setDeviceRecordKey(device.getDevicerecordkey()); - dataSetBeans.add(keys); - deviceHistoryRequest.setDataSet(dataSetBeans); - downloadHistory(productInfoService, deviceHistoryRequest, deviceService); - } - - deviceService.insertDevice(device); - List deviceclinicals = dataSetBean.getDeviceClinical(); - List deviceclinicalList = new ArrayList<>(); - for (DataSetBean.DeviceClinicalBean deviceClinicalBean : deviceclinicals) { - if (deviceClinicalBean != null) { - Deviceclinical deviceclinical = WarehousBeanUtils.responseToDeviceclinical(deviceClinicalBean); - deviceclinical.setDevicerecordkey(device.getDevicerecordkey()); - deviceclinical.setUuid(uuid); - deviceclinicalList.add(deviceclinical); - } - } - deviceService.insertDeviceClinical(deviceclinicalList); - - List devicePackageBeans = dataSetBean.getDevicePackage(); - List devicepackageList = new ArrayList<>(); - for (DataSetBean.DevicePackageBean devicePackageBean : devicePackageBeans) { - Devicepackage devicepackage = WarehousBeanUtils.responseToDevicepackage(devicePackageBean); - devicepackage.setDevicerecordkey(device.getDevicerecordkey()); - devicepackage.setUuid(uuid); - devicepackageList.add(devicepackage); - } - deviceService.insertDevicepackage(devicepackageList); - - List deviceStorageBeans = dataSetBean.getDeviceStorage(); - List devicestorageList = new ArrayList<>(); - for (DataSetBean.DeviceStorageBean deviceStorageBean : deviceStorageBeans) { - Devicestorage devicestorage = WarehousBeanUtils.responseToDevicestorage(deviceStorageBean); - devicestorage.setDevicerecordkey(device.getDevicerecordkey()); - devicestorage.setUuid(uuid); - devicestorageList.add(devicestorage); - } - deviceService.insertDevicestorage(devicestorageList); - - List contactListBeans = dataSetBean.getContactList(); - List contactlistList = new ArrayList<>(); - for (DataSetBean.ContactListBean contactListBean : contactListBeans) { - Contactlist contactlist = WarehousBeanUtils.responseToContactlist(contactListBean); - contactlist.setDevicerecordkey(device.getDevicerecordkey()); - contactlist.setUuid(uuid); - contactlistList.add(contactlist); - } - deviceService.insertContactlist(contactlistList); - } - } - } - } - } else { - return -1; - } - return 1; - } - public int downloadHistory(ProductInfoService productInfoService, DownloadHistoryRequest deviceHistoryRequest, DeviceService deviceService) { + public int downloadHistory(DownloadHistoryRequest deviceHistoryRequest) { String response = HttpClient.post("sharing/history/get", deviceHistoryRequest); MedicalHistoryResonse medicalResonse = (MedicalHistoryResonse) JSONObject.parseObject(response, MedicalHistoryResonse.class); if (medicalResonse.getReturnCode() == 1) { @@ -296,7 +199,7 @@ public class DownloadDeviceHelper { device.setUuid(uuid); device.setLastModifyTime(DateUtil.formatDateTime(new Date())); deviceService.insertDevice(device); - new UdiTransferUtils().transUdi(deviceService, productInfoService, uuid, udiCompanyService); + udiTransferUtils.transUdi(uuid); List deviceclinicals = dataSetBean.getDeviceClinical(); List deviceclinicalList = new ArrayList<>(); for (DataSetBean.DeviceClinicalBean deviceClinicalBean : deviceclinicals) { @@ -406,7 +309,7 @@ public class DownloadDeviceHelper { } deviceService.insertContactlist(contactlistList); - new UdiTransferUtils().transUdi(deviceService, productInfoService, uuid, udiCompanyService); + udiTransferUtils.transUdi(uuid); } } } else { diff --git a/src/main/java/com/glxp/udidl/admin/controller/device/PosTaggerController.java b/src/main/java/com/glxp/udidl/admin/controller/device/PosTaggerController.java index 5d58143..f596f27 100644 --- a/src/main/java/com/glxp/udidl/admin/controller/device/PosTaggerController.java +++ b/src/main/java/com/glxp/udidl/admin/controller/device/PosTaggerController.java @@ -107,6 +107,10 @@ public class PosTaggerController { List ratioList = getPackRatio(uuidList); List udiInfoBeans = new ArrayList<>(); for (ProductInfoEntity uuidEntity : ratioList) { + + BeanUtils.copyProperties(uuidEntity, ggxhBean); + + ggxhBean.setCphhhbh(uuidEntity.getCphhhbh()); ggxhBean.setCplb(uuidEntity.getCplb()); ggxhBean.setCpms(uuidEntity.getCpms()); diff --git a/src/main/java/com/glxp/udidl/admin/controller/device/TestCompanyUdiController.java b/src/main/java/com/glxp/udidl/admin/controller/device/TestCompanyUdiController.java index acb03cf..5b2ba98 100644 --- a/src/main/java/com/glxp/udidl/admin/controller/device/TestCompanyUdiController.java +++ b/src/main/java/com/glxp/udidl/admin/controller/device/TestCompanyUdiController.java @@ -20,7 +20,6 @@ public class TestCompanyUdiController { udiCompanyService.transAll(); } - //新增版本记录 转换 @GetMapping("udidl/udi/isNewest") public void transferIsNewest() { diff --git a/src/main/java/com/glxp/udidl/admin/controller/device/TestController.java b/src/main/java/com/glxp/udidl/admin/controller/device/TestController.java index 94bc2e2..1229eaa 100644 --- a/src/main/java/com/glxp/udidl/admin/controller/device/TestController.java +++ b/src/main/java/com/glxp/udidl/admin/controller/device/TestController.java @@ -1,5 +1,6 @@ package com.glxp.udidl.admin.controller.device; +import cn.hutool.core.util.StrUtil; import com.alibaba.fastjson.JSONObject; import com.glxp.udidl.admin.dao.udi.ProductInfoMapper; import com.glxp.udidl.admin.entity.udi.ProductInfoEntity; @@ -54,12 +55,14 @@ public class TestController { UdplatDownloadService udplatDownloadService; @Autowired UdplatSyncService udplatSyncService; + @Resource + UdiTransferUtils udiTransferUtils; @GetMapping("udidl/device/transfer") public void transfer() { List keys = deviceService.findAllByZxxscpbs(); for (String key : keys) { - new UdiTransferUtils().transUdi(deviceService, productInfoService, key, udiCompanyService); + udiTransferUtils.transUdi(key); } } @@ -69,7 +72,7 @@ public class TestController { int index = listPageRequest.getPage(); for (String key : keys) { index++; - new UdiTransferUtils().updateUdi(deviceService, productInfoService, key); + udiTransferUtils.updateUdi(deviceService, productInfoService, key); logger.info(listPageRequest.getPage() + "---" + listPageRequest.getLimit() + "----" + index); } return ResultVOUtils.success("总数=" + keys.size() + "\n"); @@ -79,7 +82,7 @@ public class TestController { public BaseResponse transferByPage(ListPageRequest listPageRequest) { List keys = deviceService.findAllByZxxscpbsPage(listPageRequest); for (String key : keys) { - new UdiTransferUtils().transUdi(deviceService, productInfoService, key, udiCompanyService); + udiTransferUtils.transUdi(key); } return ResultVOUtils.success("总数=" + keys.size() + "\n"); } @@ -90,7 +93,7 @@ public class TestController { for (String key : keys) { Device device = deviceService.searchByZxxscpbs(key); if (device != null) - new UdiTransferUtils().transUdi(deviceService, productInfoService, device.getUuid(), udiCompanyService); + udiTransferUtils.transUdi(device.getUuid()); } } } @@ -158,24 +161,27 @@ public class TestController { //更新厂家信息, UdiCompanyRequest udiCompanyRequest = new UdiCompanyRequest(); udiCompanyRequest.setTyshxydm(productInfoEntity.getTyshxydm()); - List udiCompanyEntitys = udiCompanyService.filterUdiCompany(udiCompanyRequest); - if (udiCompanyEntitys == null || udiCompanyEntitys.size() == 0) { - UdiCompanyEntity udiCompanyEntity = new UdiCompanyEntity(); - udiCompanyEntity.setTyshxydm(productInfoEntity.getTyshxydm()); - udiCompanyEntity.setUpdateTime(new Date()); - udiCompanyEntity.setYlqxzcrbarywmc(productInfoEntity.getYlqxzcrbarywmc()); - udiCompanyEntity.setYlqxzcrbarmc(productInfoEntity.getYlqxzcrbarmc()); - List contactlists = udiCompanyService.selectContactBykey(productInfoEntity.getDeviceRecordKey()); - if (contactlists != null && contactlists.size() > 0) { - udiCompanyEntity.setQylxrcz(contactlists.get(0).getQylxrcz()); - udiCompanyEntity.setQylxrdh(contactlists.get(0).getQylxrdh()); - udiCompanyEntity.setQylxryx(contactlists.get(0).getQylxryx()); + if (StrUtil.isNotEmpty(udiCompanyRequest.getTyshxydm())) { + List udiCompanyEntitys = udiCompanyService.filterUdiCompany(udiCompanyRequest); + if (udiCompanyEntitys == null || udiCompanyEntitys.size() == 0) { + UdiCompanyEntity udiCompanyEntity = new UdiCompanyEntity(); + udiCompanyEntity.setTyshxydm(productInfoEntity.getTyshxydm()); + udiCompanyEntity.setUpdateTime(new Date()); + udiCompanyEntity.setYlqxzcrbarywmc(productInfoEntity.getYlqxzcrbarywmc()); + udiCompanyEntity.setYlqxzcrbarmc(productInfoEntity.getYlqxzcrbarmc()); + List contactlists = udiCompanyService.selectContactBykey(productInfoEntity.getDeviceRecordKey()); + if (contactlists != null && contactlists.size() > 0) { + udiCompanyEntity.setQylxrcz(contactlists.get(0).getQylxrcz()); + udiCompanyEntity.setQylxrdh(contactlists.get(0).getQylxrdh()); + udiCompanyEntity.setQylxryx(contactlists.get(0).getQylxryx()); + } + udiCompanyEntity.setUpdateTime(new Date()); + udiCompanyService.insertUdiCompany(udiCompanyEntity); + return ResultVOUtils.success(udiCompanyEntity); } - udiCompanyEntity.setUpdateTime(new Date()); - udiCompanyService.insertUdiCompany(udiCompanyEntity); - return ResultVOUtils.success(udiCompanyEntity); } + } return ResultVOUtils.error(500, "未查询到数据"); } diff --git a/src/main/java/com/glxp/udidl/admin/dao/udi/ProductClassifyMapper.java b/src/main/java/com/glxp/udidl/admin/dao/udi/ProductClassifyMapper.java new file mode 100644 index 0000000..c717fbe --- /dev/null +++ b/src/main/java/com/glxp/udidl/admin/dao/udi/ProductClassifyMapper.java @@ -0,0 +1,7 @@ +package com.glxp.udidl.admin.dao.udi; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.glxp.udidl.admin.entity.udi.ProductClassifyEntity; + +public interface ProductClassifyMapper extends BaseMapper { +} diff --git a/src/main/java/com/glxp/udidl/admin/entity/udi/ProductClassifyEntity.java b/src/main/java/com/glxp/udidl/admin/entity/udi/ProductClassifyEntity.java new file mode 100644 index 0000000..c749db5 --- /dev/null +++ b/src/main/java/com/glxp/udidl/admin/entity/udi/ProductClassifyEntity.java @@ -0,0 +1,13 @@ +package com.glxp.udidl.admin.entity.udi; + +import io.swagger.models.auth.In; +import lombok.Data; + +@Data +public class ProductClassifyEntity { + private Integer id; + private String code; + private String name; + private String level; + private String qxlb; +} diff --git a/src/main/java/com/glxp/udidl/admin/entity/udi/ProductInfoEntity.java b/src/main/java/com/glxp/udidl/admin/entity/udi/ProductInfoEntity.java index d72d600..b92c771 100644 --- a/src/main/java/com/glxp/udidl/admin/entity/udi/ProductInfoEntity.java +++ b/src/main/java/com/glxp/udidl/admin/entity/udi/ProductInfoEntity.java @@ -145,4 +145,24 @@ public class ProductInfoEntity { @ApiModelProperty(value = "产品类型") private String cplx; + @ApiModelProperty(value = "是否为包类产品/组套类产品; 1 是 0 否") + private String sfwblztlcp; + @ApiModelProperty(value = "共振(MR) 安全相关信息; 0 安全 , 1 条件安全, 2 不安全 , 3 说明书或标签上面不包括 MR 安全信息") + private String cgzmraqxgxx; + @ApiModelProperty(value = "标记为一次性使用:0 否, 1 是") + private String sfbjwycxsy; + @ApiModelProperty(value = "最大重复使用次数") + private String zdcfsycs; + @ApiModelProperty(value = "是否为已灭菌产品:1 是 0 否") + private String sfwwjbz; + @ApiModelProperty(value = "使用前是否需要进行灭菌:1 是 0 否") + private String syqsfxyjxmj; + @ApiModelProperty(value = "'灭菌方式'") + private String mjfs; + @ApiModelProperty(value = "'其他信息的网址链接'") + private String qtxxdwzlj; + @ApiModelProperty(value = "'分类名称'") + private String categoryName; + + } diff --git a/src/main/java/com/glxp/udidl/admin/entity/udid/DeviceEntity.java b/src/main/java/com/glxp/udidl/admin/entity/udid/DeviceEntity.java index fde2f26..b828ce5 100644 --- a/src/main/java/com/glxp/udidl/admin/entity/udid/DeviceEntity.java +++ b/src/main/java/com/glxp/udidl/admin/entity/udid/DeviceEntity.java @@ -10,55 +10,6 @@ import java.util.List; @ApiModel(value = "医疗器械信息") public class DeviceEntity { - - /** - * deviceRecordKey : 1BA24C4BF1416C236E58E814DBDE706B - * versionNumber : 2 - * versionStatus : 更新 - * versionTime : 2020-08-24 09:52:05 - * deviceClinical : [{"id":1,"deviceRecordKey":"1BA24C4BF1416C236E58E814DBDE706B","lcsycclx":"","ccz":"","ccdw":""}] - * devicePackage : [{"id":1,"deviceRecordKey":"1BA24C4BF1416C236E58E814DBDE706B","bzcpbs":"16949399321055","cpbzjb":"盒","bznhxyjcpbssl":12,"bznhxyjbzcpbs":"06949399321058"},{"id":2,"deviceRecordKey":"1BA24C4BF1416C236E58E814DBDE706B","bzcpbs":"26949399321052","cpbzjb":"箱","bznhxyjcpbssl":4,"bznhxyjbzcpbs":"16949399321055"}] - * deviceStorage : [{"id":1,"deviceRecordKey":"1BA24C4BF1416C236E58E814DBDE706B","cchcztj":"湿度","zdz":"0","zgz":"80","jldw":"%RH"}] - * contactList : [{"id":1,"deviceRecordKey":"1BA24C4BF1416C236E58E814DBDE706B","qylxryx":"ahaofohhc@163.com","qylxrdh":"0552-2088222","qylxrcz":"0552-2053891"}] - * tsrq : - * qtxxdwzlj : - * scbssfbhsxrq : 是 - * scbssfbhscrq : 是 - * scbssfbhph : 是 - * scbssfbhxlh : 否 - * tsccsm : - * tscchcztj : 本产品应储存在通风良好,干燥清洁,湿度不超过80%RH的室内,严禁与腐蚀性物品混堆;须防止运输过程中的剧烈冲击、震动及硬物刮蹭,保持包装完整;贮存与运输时请勿重压,避免日晒和雨雪淋溅。 - * qxlb : 器械 - * cplb : 耗材 - * yflbm : - * sfwwjbz : 是 - * syqsfxyjxmj : 否 - * cgzmraqxgxx : 说明书或标签上面不包含MR安全性信息 - * ybbm : - * sydycpbs : - * btcpbs : - * cpms : 产品包括腹腔穿刺器(FQ型)和胸腔穿刺器(XQ型)两种型号。腹腔穿刺器FQ型由穿刺椎、穿刺套管、自调式密封帽和保护套(3mm、 5.5mm规格的不含自调式密封帽)组成,穿刺杆采用ABS (台湾台美)颗粒,穿刺椎头,穿刺环形套管采用PC-2858颗粒(德国拜耳)制成;胸腔穿刺器XQ型由穿刺椎和穿刺套组成,其中穿刺椎由穿刺杆和手柄组成,穿刺套由柔性套管和套管密封套组成,采用医用高分子材料制成。产品应无菌。 - * zxxsdycpbs : 06949399321058 - * flbm : 02 - * cphhhbh : - * ylqxzcrbarmc : 安徽奥弗医疗设备科技股份有限公司 - * cpmctymc : 穿刺器 - * spmc : 穿刺器 - * ggxh : XQ/15mm×80mm - * sfybtzjbs : 否 - * sfwblztlcp : 否 - * zdcfsycs : - * mjfs : - * cpbsfbrq : 2020-06-18 - * tyshxydm : 91340300684969073C - * cpbsbmtxmc : GS1 - * btcpbsyzxxsdycpbssfyz : - * sfbjwycxsy : 是 - * ylqxzcrbarywmc : - * zczbhhzbapzbh : 皖械注准20202020172;,皖械注准20152150140 - * zxxsdyzsydydsl : 1 - */ - @ApiModelProperty(value = "uuid") private String uuid; @@ -203,6 +154,7 @@ public class DeviceEntity { @ApiModelProperty(value = "") private boolean check; + @ApiModelProperty(value = "耗材或者设备") private String hchzsb; @ApiModelProperty(value = "产品类型") diff --git a/src/main/java/com/glxp/udidl/admin/res/udid/MedicalSingleResponse.java b/src/main/java/com/glxp/udidl/admin/res/udid/MedicalSingleResponse.java index e37aae1..ec596ee 100644 --- a/src/main/java/com/glxp/udidl/admin/res/udid/MedicalSingleResponse.java +++ b/src/main/java/com/glxp/udidl/admin/res/udid/MedicalSingleResponse.java @@ -4,12 +4,6 @@ import java.util.List; public class MedicalSingleResponse { - /** - * returnCode : 1 - * returnMsg : 业务执行成功 - * dataSet : [{"deviceRecordKey":"0023B4D31B87B6A202208562F9794B21","versionNumber":2,"versionStatus":"更新","versionTime":"2020-04-02 16:13:41","deviceClinical":[],"devicePackage":[],"deviceStorage":[],"contactList":[],"tsrq":"","qtxxdwzlj":"","scbssfbhsxrq":"是","scbssfbhscrq":"是","scbssfbhph":"是","scbssfbhxlh":"否","tsccsm":"","tscchcztj":"","qxlb":"器械","cplb":"耗材","yflbm":"","sfwwjbz":"是","syqsfxyjxmj":"否","cgzmraqxgxx":"安全","ybbm":"","sydycpbs":"","btcpbs":"","cpms":"Ureteral Stent","zxxsdycpbs":"08714729040347","flbm":"14","cphhhbh":"M0061453630","ylqxzcrbarmc":"波士顿科学公司","cpmctymc":"输尿管支架","spmc":"","ggxh":"M0061453630","sfybtzjbs":"否","sfwblztlcp":"否","zdcfsycs":"","mjfs":"","cpbsfbrq":"2019-10-31","tyshxydm":"913100006073791417","cpbsbmtxmc":"GS1","btcpbsyzxxsdycpbssfyz":"","sfbjwycxsy":"是","zczbhhzbapzbh":"国械注进20193141752","ylqxzcrbarywmc":"Boston Scientific Corporation","zxxsdyzsydydsl":"1"}] - */ - private int returnCode; private String returnMsg; private List dataSet; diff --git a/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceDownloadService.java b/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceDownloadService.java index 90a57c4..925d1fb 100644 --- a/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceDownloadService.java +++ b/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceDownloadService.java @@ -91,6 +91,26 @@ public class DeviceDownloadService { return token; } + public String getTokenNow(TokenRequest tokenRequest) { + + + try { + String response = HttpClient.post("token/get", tokenRequest); + TokenEntity tokenEntity = (TokenEntity) JSONObject.parseObject(response, TokenEntity.class); + if (tokenEntity.getReturnCode() == 1) { + token = tokenEntity.getAccessToken(); + return "验证成功"; + } else { + return "验证失败(国家库反馈信息:" + tokenEntity.getReturnMsg() + ")"; + } + + } catch (Exception e) { + e.printStackTrace(); + return "国家库网络服务器异常!"; + } + } + + /** * 获取产品标识详情数据 * @@ -144,8 +164,6 @@ public class DeviceDownloadService { /** * 获取单条数据 * - * @param rangeValue - * @param requestType * @param page * @return */ @@ -217,7 +235,7 @@ public class DeviceDownloadService { /** * 按天/按月下载 * - * @param date 日期:如果是天,就是单日时间,如果是月份,就是一个月份 yyyy-MM + * @param 日期:如果是天,就是单日时间,如果是月份,就是一个月份 yyyy-MM * @return */ public DataSetTotalResult getData(DeviceRequest deviceRequest) { @@ -489,7 +507,6 @@ public class DeviceDownloadService { device.setDevicerecordkey(item.getDeviceRecordKey()); deviceService.updateCplx(device); - ProductInfoEntity productInfoEntity = new ProductInfoEntity(); productInfoEntity.setHchzsb(item.getHchzsb()); productInfoEntity.setCplx(item.getCplx()); diff --git a/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceSaveService.java b/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceSaveService.java index d8fc641..a41a5b2 100644 --- a/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceSaveService.java +++ b/src/main/java/com/glxp/udidl/admin/service/dataSync/DeviceSaveService.java @@ -249,7 +249,7 @@ public class DeviceSaveService { private void productInfoSave(String uuid) { if (udiTransferUtils == null) udiTransferUtils = new UdiTransferUtils(); - udiTransferUtils.transUdi(deviceService, productInfoService, uuid, udiCompanyService); + udiTransferUtils.transUdi(uuid); } private String getUUId() { diff --git a/src/main/java/com/glxp/udidl/admin/service/info/impl/CompanyServiceImpl.java b/src/main/java/com/glxp/udidl/admin/service/info/impl/CompanyServiceImpl.java index 1bca3b8..ffbc44b 100644 --- a/src/main/java/com/glxp/udidl/admin/service/info/impl/CompanyServiceImpl.java +++ b/src/main/java/com/glxp/udidl/admin/service/info/impl/CompanyServiceImpl.java @@ -25,7 +25,7 @@ public class CompanyServiceImpl implements CompanyService { @Override public CompanyEntity findCompany() { - return companyDao.selectOne(new QueryWrapper().isNull("dataSource")); + return companyDao.findCompany(); } @Override diff --git a/src/main/java/com/glxp/udidl/admin/service/udi/ProductClassifyService.java b/src/main/java/com/glxp/udidl/admin/service/udi/ProductClassifyService.java new file mode 100644 index 0000000..b97c68e --- /dev/null +++ b/src/main/java/com/glxp/udidl/admin/service/udi/ProductClassifyService.java @@ -0,0 +1,10 @@ +package com.glxp.udidl.admin.service.udi; + +import com.glxp.udidl.admin.entity.udi.ProductClassifyEntity; + +public interface ProductClassifyService { + + + ProductClassifyEntity findByCode(String code, String qxlb); + +} diff --git a/src/main/java/com/glxp/udidl/admin/service/udi/impl/ProductClassifyServiceImpl.java b/src/main/java/com/glxp/udidl/admin/service/udi/impl/ProductClassifyServiceImpl.java new file mode 100644 index 0000000..630c892 --- /dev/null +++ b/src/main/java/com/glxp/udidl/admin/service/udi/impl/ProductClassifyServiceImpl.java @@ -0,0 +1,23 @@ +package com.glxp.udidl.admin.service.udi.impl; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.glxp.udidl.admin.dao.udi.ProductClassifyMapper; +import com.glxp.udidl.admin.entity.udi.ProductClassifyEntity; +import com.glxp.udidl.admin.service.udi.ProductClassifyService; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; + +@Service +public class ProductClassifyServiceImpl implements ProductClassifyService { + + @Resource + ProductClassifyMapper productClassifyMapper; + + @Override + public ProductClassifyEntity findByCode(String code, String qxlb) { + + return productClassifyMapper.selectOne(new QueryWrapper().eq("code", code).eq("qxlb", qxlb)); + + } +} diff --git a/src/main/java/com/glxp/udidl/admin/thread/AsyncDownloadTask.java b/src/main/java/com/glxp/udidl/admin/thread/AsyncDownloadTask.java index b5773b3..d6ca433 100644 --- a/src/main/java/com/glxp/udidl/admin/thread/AsyncDownloadTask.java +++ b/src/main/java/com/glxp/udidl/admin/thread/AsyncDownloadTask.java @@ -30,15 +30,14 @@ public class AsyncDownloadTask { @Resource ProductInfoService productInfoService; @Resource - private DevicedownloadMapper devicedownloadMapper; - @Autowired DeviceDownloadService deviceDownloadService; - @Autowired + @Resource DeviceSyncService deviceSyncService; + @Resource + DownloadDeviceHelper downloadDeviceHelper; @Async public void downloadByDi(String primaryDeviceId) { - DownloadDeviceHelper downloadDeviceHelper = new DownloadDeviceHelper(companyService, udiCompanyService); String token = deviceDownloadService.getToken(); DownloadDiRequest downloadDiRequest = new DownloadDiRequest(); downloadDiRequest.setAccessToken(token); @@ -58,63 +57,7 @@ public class AsyncDownloadTask { public void downloadByMonthTest(String month, int page) { deviceDownloadService.downloadByMonthTest(month, page); - /*int curpage = page; - DownloadDeviceHelper downloadDeviceHelper = new DownloadDeviceHelper(companyService,udiCompanyService); - TokenEntity token = downloadDeviceHelper.getToken(); - while (true) { - DeviceRequest deviceRequest = new DeviceRequest(); - deviceRequest.setAccessToken(token.getAccessToken()); - deviceRequest.setRequestType("2"); - deviceRequest.setRangeValue(month); - deviceRequest.setCurrentPageNumber(curpage + ""); - int result = downloadDeviceHelper.downloadDevices(productInfoService, deviceService, deviceRequest); - if (result == -1) { - return;// ResultVOUtils.error(505, "下载出错"); - } - curpage++; - }*/ - } - - //按天下载UDI , 手动下载 - @Async - public void downloadByDay(String day) { - deviceSyncService.downloadUdi(day, "manual"); - } - - @Async - public void downloadAll() { - while (true) { - int curpage = 1; - Devicedownload devicedownload = devicedownloadMapper.selectByPrimaryKey("udid"); - if (devicedownload != null) { - curpage = devicedownload.getAllindex(); - } else { - devicedownload = new Devicedownload(); - devicedownload.setId("udid"); - devicedownload.setAllindex(1); - devicedownloadMapper.insert(devicedownload); - } - devicedownload.setIsdownload(1); - long startTime = System.currentTimeMillis(); - devicedownload.setStarttime(startTime + ""); - devicedownloadMapper.updateByPrimaryKey(devicedownload); - DownloadDeviceHelper downloadDeviceHelper = new DownloadDeviceHelper(companyService, udiCompanyService); - TokenEntity token = downloadDeviceHelper.getToken(); - DeviceRequest deviceRequest = new DeviceRequest(); - deviceRequest.setAccessToken(token.getAccessToken()); - deviceRequest.setRequestType(3 + ""); - deviceRequest.setCurrentPageNumber(curpage + ""); - int result = downloadDeviceHelper.downloadDevices(productInfoService, deviceService, deviceRequest); - if (result == -1) { - return;// ResultVOUtils.error(505, "下载出错"); - } - curpage++; - Devicedownload devicedownload1 = new Devicedownload(); - devicedownload1.setAllindex(curpage); - devicedownload1.setId("udid"); - devicedownloadMapper.updateProgress(devicedownload1); - } } diff --git a/src/main/java/com/glxp/udidl/admin/thread/UdiTransferTask.java b/src/main/java/com/glxp/udidl/admin/thread/UdiTransferTask.java deleted file mode 100644 index 4a32366..0000000 --- a/src/main/java/com/glxp/udidl/admin/thread/UdiTransferTask.java +++ /dev/null @@ -1,147 +0,0 @@ -package com.glxp.udidl.admin.thread; - -import com.glxp.udidl.admin.dao.info.ScheduledMapper; -import com.glxp.udidl.admin.entity.info.ScheduledEntity; -import com.glxp.udidl.admin.entity.udi.CountProductEntity; -import com.glxp.udidl.admin.entity.udi.ProductInfoEntity; -import com.glxp.udidl.admin.entity.udid.DeviceEntity; -import com.glxp.udidl.admin.entity.udid.Devicepackage; -import com.glxp.udidl.admin.req.info.ScheduledRequest; -import com.glxp.udidl.admin.service.inout.DeviceService; -import com.glxp.udidl.admin.service.inout.ProductInfoService; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.scheduling.annotation.SchedulingConfigurer; -import org.springframework.scheduling.config.ScheduledTaskRegistrar; -import org.springframework.scheduling.support.CronTrigger; - -import javax.annotation.Resource; -import java.util.ArrayList; -import java.util.Date; -import java.util.HashMap; -import java.util.List; - -//@Component -//@EnableScheduling -public class UdiTransferTask implements SchedulingConfigurer { - - final Logger logger = LoggerFactory.getLogger(DownloadTask.class); - - @Resource - private ScheduledMapper scheduledDao; - @Resource - private DeviceService deviceService; - @Resource - private ProductInfoService productInfoService; - - - @Override - public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) { - scheduledTaskRegistrar.addTriggerTask(() -> process(), - triggerContext -> { - ScheduledRequest scheduledRequest = new ScheduledRequest(); - scheduledRequest.setCronName("transUdi"); - ScheduledEntity scheduledEntity = scheduledDao.findScheduled(scheduledRequest); - String cron = scheduledEntity.getCron();//"0 55 5 * * ?"; - if (cron.isEmpty()) { - logger.error("cron is null"); - } - return new CronTrigger(cron).nextExecutionTime(triggerContext); - }); - } - - private void process() { - List keys = deviceService.findAllByZxxscpbs(); - for (String key : keys) { - transUdi(key); - } - } - - public void transUdi(String key) { - DeviceEntity deviceEntity = deviceService.searchById(key); - ProductInfoEntity productInfoEntity = new ProductInfoEntity(); - productInfoEntity.setDeviceRecordKey(deviceEntity.getDevicerecordkey()); - productInfoEntity.setNameCode(deviceEntity.getZxxsdycpbs()); - productInfoEntity.setAddType(1 + ""); - productInfoEntity.setBhxjcpbm(""); - productInfoEntity.setBhxjsl(1); - productInfoEntity.setBzcj(""); - productInfoEntity.setBhzxxsbzsl(1); - productInfoEntity.setPackLevel(1 + ""); - productInfoEntity.setZxxsbzbhsydysl(Integer.parseInt(deviceEntity.getZxxsdyzsydydsl())); - productInfoEntity.setUpdateTime(new Date()); - productInfoService.insertProductInfo(productInfoEntity); - List devicepackages = deviceEntity.getDevicepackages(); - List countProductEntities = new ArrayList<>(); - if (devicepackages != null && devicepackages.size() > 0) { - HashMap packRation = new HashMap<>(); - for (Devicepackage devicepackage : devicepackages) { - CountProductEntity countProductEntity = new CountProductEntity(); - Devicepackage head = devicepackage; - int level = 2; //包装层级,初始为2,最小销售单元为1 - int zxbsCount = devicepackage.getBznhxyjcpbssl(); //最小销售单元数量 - int count = 1; //计数,如果计数超过包装标识层级,就是死循环,包装标识有误 - while (!head.getBznhxyjbzcpbs().equals(deviceEntity.getZxxsdycpbs())) { - head = getNext(devicepackages, head); - if (head == null) { - return; - } - count++; - if (count > devicepackages.size()) { - return; - } - level++; - zxbsCount = zxbsCount * head.getBznhxyjcpbssl(); - - } - packRation.put(level - 1 + "", devicepackage.getBznhxyjcpbssl() + ""); - countProductEntity.setLevel(level); - countProductEntity.setZxbsCount(zxbsCount); - countProductEntities.add(countProductEntity); - } - CountProductEntity max = getMaxLevel(countProductEntities); - packRation.put(max.getLevel() + "", max.getZxbsCount() + ""); - for (int i = 0; i < devicepackages.size(); i++) { - Devicepackage devicepackage = devicepackages.get(i); - CountProductEntity countProductEntity = countProductEntities.get(i); - productInfoEntity.setNameCode(devicepackage.getBzcpbs()); - productInfoEntity.setBhxjcpbm(devicepackage.getBznhxyjbzcpbs()); - productInfoEntity.setBhxjsl(devicepackage.getBznhxyjcpbssl()); - productInfoEntity.setBzcj(devicepackage.getCpbzjb()); - - productInfoEntity.setBhzxxsbzsl(countProductEntity.getZxbsCount()); - productInfoEntity.setPackLevel(countProductEntity.getLevel() + ""); - productInfoEntity.setUpdateTime(new Date()); - productInfoService.insertProductInfo(productInfoEntity); - } - } - } - - public Devicepackage getNext(List devicepackages, Devicepackage devicepackage) { - - if (devicepackages != null && devicepackages.size() > 0) { - for (int i = 0; i < devicepackages.size(); i++) { - Devicepackage temp = devicepackages.get(i); - if (temp.getBzcpbs().equals(devicepackage.getBznhxyjbzcpbs())) { - return temp; - } - } - } - return null; - } - - public CountProductEntity getMaxLevel(List countProductEntities) { - int index = 0; - int max = 0; - for (int i = 0; i < countProductEntities.size(); i++) { - CountProductEntity countProductEntity = countProductEntities.get(i); - if (countProductEntity.getZxbsCount() > max) { - max = countProductEntity.getZxbsCount(); - index = i; - } - } - return countProductEntities.get(index); - } - - -} diff --git a/src/main/java/com/glxp/udidl/admin/thread/UdiTransferUtils.java b/src/main/java/com/glxp/udidl/admin/thread/UdiTransferUtils.java index 1c9a106..fdeb81a 100644 --- a/src/main/java/com/glxp/udidl/admin/thread/UdiTransferUtils.java +++ b/src/main/java/com/glxp/udidl/admin/thread/UdiTransferUtils.java @@ -1,6 +1,8 @@ package com.glxp.udidl.admin.thread; +import cn.hutool.core.util.StrUtil; import com.glxp.udidl.admin.entity.udi.CountProductEntity; +import com.glxp.udidl.admin.entity.udi.ProductClassifyEntity; import com.glxp.udidl.admin.entity.udi.ProductInfoEntity; import com.glxp.udidl.admin.entity.udi.UdiCompanyEntity; import com.glxp.udidl.admin.entity.udid.Contactlist; @@ -10,19 +12,33 @@ import com.glxp.udidl.admin.req.ProductInfoFilterRequest; import com.glxp.udidl.admin.req.UdiCompanyRequest; import com.glxp.udidl.admin.service.inout.DeviceService; import com.glxp.udidl.admin.service.inout.ProductInfoService; +import com.glxp.udidl.admin.service.udi.ProductClassifyService; import com.glxp.udidl.admin.service.udi.UdiCompanyService; +import org.springframework.beans.BeanUtils; +import org.springframework.stereotype.Service; +import javax.annotation.Resource; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; +@Service public class UdiTransferUtils { + @Resource + DeviceService deviceService; + @Resource + ProductInfoService productInfoService; + @Resource + UdiCompanyService udiCompanyService; + @Resource + ProductClassifyService productClassifyService; - public void transUdi(DeviceService deviceService, ProductInfoService productInfoService, String key, UdiCompanyService udiCompanyService) { + public void transUdi(String key) { DeviceEntity deviceEntity = deviceService.searchById(key); String di = deviceEntity.getZxxsdycpbs(); ProductInfoEntity productInfoEntity = new ProductInfoEntity(); + BeanUtils.copyProperties(deviceEntity, productInfoEntity); productInfoEntity.setUuid(key); productInfoEntity.setDeviceRecordKey(deviceEntity.getDevicerecordkey()); productInfoEntity.setNameCode(deviceEntity.getZxxsdycpbs()); @@ -52,6 +68,37 @@ public class UdiTransferUtils { productInfoEntity.setCplx(deviceEntity.getCplx()); productInfoEntity.setHchzsb(deviceEntity.getHchzsb()); + + if (StrUtil.trimToEmpty(productInfoEntity.getSfwblztlcp()).equals("1")) { + productInfoEntity.setSfwblztlcp("是"); + } else if (StrUtil.trimToEmpty(productInfoEntity.getSfwblztlcp()).equals("0")) { + productInfoEntity.setSfwblztlcp("否"); + } + + if (StrUtil.trimToEmpty(productInfoEntity.getCgzmraqxgxx()).equals("0")) { + productInfoEntity.setCgzmraqxgxx("安全"); + } else if (StrUtil.trimToEmpty(productInfoEntity.getCgzmraqxgxx()).equals("1")) { + productInfoEntity.setCgzmraqxgxx("条件安全"); + } else if (StrUtil.trimToEmpty(productInfoEntity.getCgzmraqxgxx()).equals("2")) { + productInfoEntity.setCgzmraqxgxx("说明书或标签上面不包括 MR 安全信息"); + } + + if (StrUtil.trimToEmpty(productInfoEntity.getSfwwjbz()).equals("1")) { + productInfoEntity.setSfwwjbz("是"); + } else if (StrUtil.trimToEmpty(productInfoEntity.getSfwwjbz()).equals("0")) { + productInfoEntity.setSfwwjbz("否"); + } + + if (StrUtil.trimToEmpty(productInfoEntity.getSyqsfxyjxmj()).equals("1")) { + productInfoEntity.setSyqsfxyjxmj("是"); + } else if (StrUtil.trimToEmpty(productInfoEntity.getSyqsfxyjxmj()).equals("0")) { + productInfoEntity.setSyqsfxyjxmj("否"); + } + + ProductClassifyEntity productClassifyEntity = productClassifyService.findByCode(productInfoEntity.getFlbm(), productInfoEntity.getQxlb()); + productInfoEntity.setCategoryName(productClassifyEntity.getName()); + + productInfoEntity.setVersionNumber(Integer.parseInt(deviceEntity.getVersionnumber())); if (deviceEntity.getSydycpbs() != null && !deviceEntity.getSydycpbs().equals("")) { productInfoEntity.setBhxjcpbm(""); @@ -186,27 +233,32 @@ public class UdiTransferUtils { //更新厂家信息, UdiCompanyRequest udiCompanyRequest = new UdiCompanyRequest(); udiCompanyRequest.setTyshxydm(productInfoEntity.getTyshxydm()); - List udiCompanyEntitys = udiCompanyService.filterUdiCompany(udiCompanyRequest); - if (udiCompanyEntitys == null || udiCompanyEntitys.size() == 0) { - UdiCompanyEntity udiCompanyEntity = new UdiCompanyEntity(); - udiCompanyEntity.setTyshxydm(productInfoEntity.getTyshxydm()); - udiCompanyEntity.setUpdateTime(new Date()); - udiCompanyEntity.setYlqxzcrbarywmc(productInfoEntity.getYlqxzcrbarywmc()); - udiCompanyEntity.setYlqxzcrbarmc(productInfoEntity.getYlqxzcrbarmc()); - List contactlists = udiCompanyService.selectContactBykey(productInfoEntity.getDeviceRecordKey()); - if (contactlists != null && contactlists.size() > 0) { - udiCompanyEntity.setQylxrcz(contactlists.get(0).getQylxrcz()); - udiCompanyEntity.setQylxrdh(contactlists.get(0).getQylxrdh()); - udiCompanyEntity.setQylxryx(contactlists.get(0).getQylxryx()); + + if (StrUtil.isNotEmpty(udiCompanyRequest.getTyshxydm())) { + List udiCompanyEntitys = udiCompanyService.filterUdiCompany(udiCompanyRequest); + if (udiCompanyEntitys == null || udiCompanyEntitys.size() == 0) { + UdiCompanyEntity udiCompanyEntity = new UdiCompanyEntity(); + udiCompanyEntity.setTyshxydm(productInfoEntity.getTyshxydm()); + udiCompanyEntity.setUpdateTime(new Date()); + udiCompanyEntity.setYlqxzcrbarywmc(productInfoEntity.getYlqxzcrbarywmc()); + udiCompanyEntity.setYlqxzcrbarmc(productInfoEntity.getYlqxzcrbarmc()); + List contactlists = udiCompanyService.selectContactBykey(productInfoEntity.getDeviceRecordKey()); + if (contactlists != null && contactlists.size() > 0) { + udiCompanyEntity.setQylxrcz(contactlists.get(0).getQylxrcz()); + udiCompanyEntity.setQylxrdh(contactlists.get(0).getQylxrdh()); + udiCompanyEntity.setQylxryx(contactlists.get(0).getQylxryx()); + } + udiCompanyEntity.setUpdateTime(new Date()); + udiCompanyService.insertUdiCompany(udiCompanyEntity); } - udiCompanyEntity.setUpdateTime(new Date()); - udiCompanyService.insertUdiCompany(udiCompanyEntity); } + } public void updateUdi(DeviceService deviceService, ProductInfoService productInfoService, String key) { DeviceEntity deviceEntity = deviceService.searchById(key); ProductInfoEntity productInfoEntity = new ProductInfoEntity(); + BeanUtils.copyProperties(deviceEntity, productInfoEntity); productInfoEntity.setUuid(key); productInfoEntity.setScbssfbhph(deviceEntity.getScbssfbhph()); productInfoEntity.setScbssfbhscrq(deviceEntity.getScbssfbhscrq()); diff --git a/src/main/resources/mybatis/mapper/info/CompanyMapper.xml b/src/main/resources/mybatis/mapper/info/CompanyMapper.xml index ed59b95..d1117d2 100644 --- a/src/main/resources/mybatis/mapper/info/CompanyMapper.xml +++ b/src/main/resources/mybatis/mapper/info/CompanyMapper.xml @@ -7,6 +7,7 @@ resultType="com.glxp.udidl.admin.entity.info.CompanyEntity"> SELECT * FROM company + order by id limit 1 diff --git a/src/main/resources/mybatis/mapper/udi/ProductInfoMapper.xml b/src/main/resources/mybatis/mapper/udi/ProductInfoMapper.xml index 60c6b17..5d17699 100644 --- a/src/main/resources/mybatis/mapper/udi/ProductInfoMapper.xml +++ b/src/main/resources/mybatis/mapper/udi/ProductInfoMapper.xml @@ -95,7 +95,7 @@ resultType="com.glxp.udidl.admin.entity.udi.ProductInfoEntity"> select * from productinfo where - uuid in ( + uuid in ( #{item} @@ -113,11 +113,7 @@ select p.uuid from productinfo p - INNER JOIN - (select deviceRecordKey, max(versionNumber) versionNumber - from productinfo + INNER JOIN + (select deviceRecordKey, max(versionNumber) versionNumber + from productinfo @@ -187,8 +182,8 @@ GROUP BY deviceRecordKey) - a on p.deviceRecordKey = a.deviceRecordKey and p.versionNumber = a.versionNumber - group by uuid + a on p.deviceRecordKey = a.deviceRecordKey and p.versionNumber = a.versionNumber + group by uuid - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -