|
|
|
@ -13,14 +13,13 @@ import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.dao.basic.BasicProductsDao;
|
|
|
|
|
import com.glxp.api.dao.collect.RelCodeBatchMapper;
|
|
|
|
|
import com.glxp.api.dao.inout.IoCodeTempDao;
|
|
|
|
|
import com.glxp.api.entity.auth.AuthAdmin;
|
|
|
|
|
import com.glxp.api.entity.basic.BasicProductsEntity;
|
|
|
|
|
import com.glxp.api.entity.basic.ProductInfoEntity;
|
|
|
|
|
import com.glxp.api.entity.basic.UdiEntity;
|
|
|
|
|
import com.glxp.api.entity.basic.UdiProductEntity;
|
|
|
|
|
import com.glxp.api.entity.collect.RelCodeBatch;
|
|
|
|
|
import com.glxp.api.entity.collect.RelCodeDetail;
|
|
|
|
|
import com.glxp.api.entity.inout.IoCodeTempEntity;
|
|
|
|
@ -31,7 +30,7 @@ import com.glxp.api.res.collect.RelCodeBatchResponse;
|
|
|
|
|
import com.glxp.api.res.collect.RelCodeDetailByParentCodeResponse;
|
|
|
|
|
import com.glxp.api.service.auth.CustomerService;
|
|
|
|
|
import com.glxp.api.service.basic.ProductInfoService;
|
|
|
|
|
import com.glxp.api.service.inout.IoCodeTempService;
|
|
|
|
|
import com.glxp.api.service.basic.UdiProductService;
|
|
|
|
|
import com.glxp.api.util.HttpClient;
|
|
|
|
|
import com.glxp.api.util.udi.FilterUdiUtils;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
@ -63,6 +62,7 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 上传保存关联信息
|
|
|
|
|
*
|
|
|
|
|
* @param file
|
|
|
|
|
*/
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
@ -70,11 +70,11 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
try {
|
|
|
|
|
String fileName = file.getOriginalFilename();
|
|
|
|
|
String suffix = FileUtil.getSuffix(fileName);
|
|
|
|
|
if(! "xml".equals(suffix)){
|
|
|
|
|
throw new JsonException("仅支持XML,文件类型错误"+suffix);
|
|
|
|
|
if (!"xml".equals(suffix)) {
|
|
|
|
|
throw new JsonException("仅支持XML,文件类型错误" + suffix);
|
|
|
|
|
}
|
|
|
|
|
log.info(file.getSize()+"文件长度");
|
|
|
|
|
if(file.getSize() > 5 * 1024 *1024){
|
|
|
|
|
log.info(file.getSize() + "文件长度");
|
|
|
|
|
if (file.getSize() > 5 * 1024 * 1024) {
|
|
|
|
|
throw new JsonException("上传文件超过5M");
|
|
|
|
|
}
|
|
|
|
|
List<RelCodeDetail> relCodeDetails = new ArrayList<>();
|
|
|
|
@ -83,7 +83,7 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
Element rootElement = XmlUtil.getRootElement(document);
|
|
|
|
|
//截取Relation
|
|
|
|
|
NodeList relation = rootElement.getElementsByTagName("Relation");
|
|
|
|
|
if(relation == null){
|
|
|
|
|
if (relation == null) {
|
|
|
|
|
throw new JsonException("XML文件解析错误");
|
|
|
|
|
}
|
|
|
|
|
Element relationE = (Element) relation.item(0);
|
|
|
|
@ -94,7 +94,7 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
String comment = relationE.getAttribute("comment");
|
|
|
|
|
//截取Batch
|
|
|
|
|
NodeList batch = rootElement.getElementsByTagName("Batch");
|
|
|
|
|
if(batch == null){
|
|
|
|
|
if (batch == null) {
|
|
|
|
|
throw new JsonException("XML文件解析错误");
|
|
|
|
|
}
|
|
|
|
|
AuthAdmin user = customerService.getUserBean();
|
|
|
|
@ -115,7 +115,7 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
// relCodeBatch.setMadeDate(DateUtil.parse(madeDate,"yyyy-MM-dd"));
|
|
|
|
|
String validateDate = batchE.getAttribute("validateDate");
|
|
|
|
|
// relCodeBatch.setValidateDate(DateUtil.offsetDay(DateUtil.parse(validateDate,"yyyy-MM-dd"),1));
|
|
|
|
|
relCodeBatch.setValidateDate(String.valueOf(DateUtil.offsetDay(DateUtil.parse(validateDate,"yyyy-MM-dd"),1)));
|
|
|
|
|
relCodeBatch.setValidateDate(String.valueOf(DateUtil.offsetDay(DateUtil.parse(validateDate, "yyyy-MM-dd"), 1)));
|
|
|
|
|
String workShop = batchE.getAttribute("workShop");
|
|
|
|
|
relCodeBatch.setWorkShop(workShop);
|
|
|
|
|
String lineName = batchE.getAttribute("lineName");
|
|
|
|
@ -143,7 +143,7 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
String packLayer = codeE.getAttribute("packLayer");
|
|
|
|
|
relCodeDetail.setPackLayer(Integer.valueOf(packLayer));
|
|
|
|
|
String parentCode = codeE.getAttribute("parentCode");
|
|
|
|
|
relCodeDetail.setParentCode(StrUtil.isNotBlank(parentCode)?parentCode:"0");
|
|
|
|
|
relCodeDetail.setParentCode(StrUtil.isNotBlank(parentCode) ? parentCode : "0");
|
|
|
|
|
String flag = codeE.getAttribute("flag");
|
|
|
|
|
relCodeDetail.setFlag(Integer.valueOf(flag));
|
|
|
|
|
relCodeDetails.add(relCodeDetail);
|
|
|
|
@ -151,26 +151,27 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
relCodeDetailService.saveBatch(relCodeDetails);
|
|
|
|
|
}catch (Exception e){
|
|
|
|
|
throw new JsonException("上传失败:"+e.getMessage());
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
throw new JsonException("上传失败:" + e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 手动添加
|
|
|
|
|
*
|
|
|
|
|
* @param relCodeBatchRequest
|
|
|
|
|
*/
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public void add(RelCodeBatchRequest relCodeBatchRequest) {
|
|
|
|
|
List<RelCodeDetailRequest> detailList = relCodeBatchRequest.getDetailList();
|
|
|
|
|
if(CollUtil.isEmpty(detailList)){
|
|
|
|
|
if (CollUtil.isEmpty(detailList)) {
|
|
|
|
|
throw new JsonException("关联明细不能为空!");
|
|
|
|
|
}
|
|
|
|
|
AuthAdmin user = customerService.getUserBean();
|
|
|
|
|
RelCodeDetailRequest relCodeDetailRequest = detailList.get(0);
|
|
|
|
|
RelCodeBatch relCodeBatch = new RelCodeBatch();
|
|
|
|
|
BeanUtils.copyProperties(relCodeBatchRequest,relCodeBatch);
|
|
|
|
|
BeanUtils.copyProperties(relCodeBatchRequest, relCodeBatch);
|
|
|
|
|
relCodeBatch.setCreateTime(new Date());
|
|
|
|
|
relCodeBatch.setCreateUser(user.getUserName());
|
|
|
|
|
relCodeBatch.setUpdateTime(new Date());
|
|
|
|
@ -181,11 +182,11 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
relCodeBatch.setErpId(customerId);
|
|
|
|
|
this.save(relCodeBatch);
|
|
|
|
|
List<RelCodeDetail> relCodeDetails = new ArrayList<>();
|
|
|
|
|
for(RelCodeDetailRequest request : detailList){
|
|
|
|
|
for (RelCodeDetailRequest request : detailList) {
|
|
|
|
|
RelCodeDetail relCodeDetail = new RelCodeDetail();
|
|
|
|
|
String parentCode = request.getParentCode();
|
|
|
|
|
request.setParentCode(StrUtil.isNotBlank(parentCode)?parentCode:"0");
|
|
|
|
|
BeanUtils.copyProperties(request,relCodeDetail);
|
|
|
|
|
request.setParentCode(StrUtil.isNotBlank(parentCode) ? parentCode : "0");
|
|
|
|
|
BeanUtils.copyProperties(request, relCodeDetail);
|
|
|
|
|
relCodeDetail.setBatchIdFk(relCodeBatch.getId());
|
|
|
|
|
relCodeDetails.add(relCodeDetail);
|
|
|
|
|
}
|
|
|
|
@ -205,19 +206,19 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public void delete(Long id) {
|
|
|
|
|
if(id == null){
|
|
|
|
|
if (id == null) {
|
|
|
|
|
throw new JsonException("id 不能为空");
|
|
|
|
|
}
|
|
|
|
|
relCodeDetailService.remove(new LambdaQueryWrapper<RelCodeDetail>().eq(RelCodeDetail::getBatchIdFk,id));
|
|
|
|
|
relCodeDetailService.remove(new LambdaQueryWrapper<RelCodeDetail>().eq(RelCodeDetail::getBatchIdFk, id));
|
|
|
|
|
this.removeById(id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public void addRelCodeSpellBox(List<RelCodeBatchRequest> relCodeBatchRequests) {
|
|
|
|
|
if (CollUtil.isEmpty(relCodeBatchRequests)){
|
|
|
|
|
if (CollUtil.isEmpty(relCodeBatchRequests)) {
|
|
|
|
|
throw new JsonException("单据信息异常!");
|
|
|
|
|
}
|
|
|
|
|
relCodeBatchRequests.forEach( item -> {
|
|
|
|
|
relCodeBatchRequests.forEach(item -> {
|
|
|
|
|
this.add(item);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
@ -225,17 +226,17 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public void deleteDetail(String curCode) {
|
|
|
|
|
List<RelCodeDetail> list = relCodeDetailService.list(new LambdaQueryWrapper<RelCodeDetail>().eq(RelCodeDetail::getParentCode, curCode));
|
|
|
|
|
if (CollUtil.isNotEmpty(list)){
|
|
|
|
|
if (CollUtil.isNotEmpty(list)) {
|
|
|
|
|
List<Integer> batchIds = list.stream().map(RelCodeDetail::getBatchIdFk).collect(Collectors.toList());
|
|
|
|
|
this.removeBatchByIds(batchIds);
|
|
|
|
|
relCodeDetailService.remove(new LambdaQueryWrapper<RelCodeDetail>().in(RelCodeDetail::getBatchIdFk,batchIds));
|
|
|
|
|
relCodeDetailService.remove(new LambdaQueryWrapper<RelCodeDetail>().in(RelCodeDetail::getBatchIdFk, batchIds));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public void deleteAllDetail(List<RelCodeDetailRequest> detailList) {
|
|
|
|
|
if (CollUtil.isNotEmpty(detailList)){
|
|
|
|
|
detailList.forEach( item -> {
|
|
|
|
|
if (CollUtil.isNotEmpty(detailList)) {
|
|
|
|
|
detailList.forEach(item -> {
|
|
|
|
|
String curCode = item.getCurCode();
|
|
|
|
|
this.deleteDetail(curCode);
|
|
|
|
|
});
|
|
|
|
@ -257,12 +258,12 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
BaseResponse<Object> baseResponse =
|
|
|
|
|
JSONObject.parseObject(response, new TypeReference<BaseResponse<Object>>() {
|
|
|
|
|
});
|
|
|
|
|
if (baseResponse.getCode() == 20000){
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
Integer id = relCodeBatchRequest.getId();
|
|
|
|
|
return this.update( new LambdaUpdateWrapper<RelCodeBatch>().set(RelCodeBatch::getUploadFlagUp,1).eq(RelCodeBatch::getId,id));
|
|
|
|
|
}else {
|
|
|
|
|
return this.update(new LambdaUpdateWrapper<RelCodeBatch>().set(RelCodeBatch::getUploadFlagUp, 1).eq(RelCodeBatch::getId, id));
|
|
|
|
|
} else {
|
|
|
|
|
Integer id = relCodeBatchRequest.getId();
|
|
|
|
|
this.update( new LambdaUpdateWrapper<RelCodeBatch>().set(RelCodeBatch::getUploadFlagUp,2).eq(RelCodeBatch::getId,id));
|
|
|
|
|
this.update(new LambdaUpdateWrapper<RelCodeBatch>().set(RelCodeBatch::getUploadFlagUp, 2).eq(RelCodeBatch::getId, id));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
@ -300,29 +301,29 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
/**
|
|
|
|
|
* 通过 parentCode 拉取国家同步库进行更新
|
|
|
|
|
*/
|
|
|
|
|
public boolean UpdateDetailByParentCode(String parentCode,Integer uploadFlagDown) {
|
|
|
|
|
public boolean UpdateDetailByParentCode(String parentCode, Integer uploadFlagDown) {
|
|
|
|
|
List<RelCodeDetailByParentCodeResponse> list = this.detailByParentCode(parentCode);
|
|
|
|
|
if (CollUtil.isNotEmpty(list)) {
|
|
|
|
|
for (int i = 0; i < list.size(); i++) {
|
|
|
|
|
try {
|
|
|
|
|
RelCodeDetailByParentCodeResponse relCodeDetailByParentCodeResponse = list.get(i);
|
|
|
|
|
this.saveDetailByParentCode(relCodeDetailByParentCodeResponse,uploadFlagDown);
|
|
|
|
|
this.saveDetailByParentCode(relCodeDetailByParentCodeResponse, uploadFlagDown);
|
|
|
|
|
List<RelCodeDetailByParentCodeResponse> relCodeDetailSons = relCodeDetailByParentCodeResponse.getRelCodeDetailSons();
|
|
|
|
|
if (CollUtil.isNotEmpty(relCodeDetailSons)) {
|
|
|
|
|
this.saveDetailByParentCode(relCodeDetailByParentCodeResponse,uploadFlagDown);
|
|
|
|
|
this.saveDetailByParentCode(relCodeDetailByParentCodeResponse, uploadFlagDown);
|
|
|
|
|
}
|
|
|
|
|
}catch (Exception e){
|
|
|
|
|
log.error("拉取国家同步库进行更新失败:[" + parentCode + "]" );
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("拉取国家同步库进行更新失败:[" + parentCode + "]");
|
|
|
|
|
log.error(e.getMessage(), e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}else
|
|
|
|
|
} else
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void saveDetailByParentCode( RelCodeDetailByParentCodeResponse relCodeDetailByParentCodeResponse,Integer uploadFlagDown) {
|
|
|
|
|
public void saveDetailByParentCode(RelCodeDetailByParentCodeResponse relCodeDetailByParentCodeResponse, Integer uploadFlagDown) {
|
|
|
|
|
String productCode = relCodeDetailByParentCodeResponse.getProductCode();
|
|
|
|
|
String subTypeNo = relCodeDetailByParentCodeResponse.getSubTypeNo();
|
|
|
|
|
String batchNo = relCodeDetailByParentCodeResponse.getBatchNo();
|
|
|
|
@ -366,29 +367,29 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
if (CollUtil.isNotEmpty(navList)) return true;
|
|
|
|
|
|
|
|
|
|
//3、查不到进行远程拉取更新
|
|
|
|
|
return this.UpdateDetailByParentCode(parentCode,0);
|
|
|
|
|
return this.UpdateDetailByParentCode(parentCode, 0);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<RelCodeDetailByParentCodeResponse> detailByParentCodeSpms(String parentCode,Integer uploadFlagDown) {
|
|
|
|
|
public List<RelCodeDetailByParentCodeResponse> detailByParentCodeSpms(String parentCode, Integer uploadFlagDown) {
|
|
|
|
|
List<RelCodeDetailByParentCodeResponse> respList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
List<RelCodeBatch> list = this.list(new LambdaQueryWrapper<RelCodeBatch>().eq(RelCodeBatch::getParentCode, parentCode));
|
|
|
|
|
if (CollUtil.isEmpty(list)){
|
|
|
|
|
if (CollUtil.isEmpty(list)) {
|
|
|
|
|
respList = this.detailByParentCode(parentCode);
|
|
|
|
|
for (int i = 0; i < respList.size(); i++) {
|
|
|
|
|
try {
|
|
|
|
|
RelCodeDetailByParentCodeResponse relCodeDetailByParentCodeResponse = respList.get(i);
|
|
|
|
|
this.saveDetailByParentCode(relCodeDetailByParentCodeResponse,uploadFlagDown);
|
|
|
|
|
this.saveDetailByParentCode(relCodeDetailByParentCodeResponse, uploadFlagDown);
|
|
|
|
|
List<RelCodeDetailByParentCodeResponse> relCodeDetailSons = relCodeDetailByParentCodeResponse.getRelCodeDetailSons();
|
|
|
|
|
if (CollUtil.isNotEmpty(relCodeDetailSons)) {
|
|
|
|
|
relCodeDetailSons.forEach( item -> {
|
|
|
|
|
this.saveDetailByParentCode(item,uploadFlagDown);
|
|
|
|
|
relCodeDetailSons.forEach(item -> {
|
|
|
|
|
this.saveDetailByParentCode(item, uploadFlagDown);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}catch (Exception e){
|
|
|
|
|
log.error("拉取国家同步库进行更新失败:[" + parentCode + "]" );
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("拉取国家同步库进行更新失败:[" + parentCode + "]");
|
|
|
|
|
log.error(e.getMessage(), e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -423,31 +424,35 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
IoCodeTempDao ioCodeTempDao;
|
|
|
|
|
@Resource
|
|
|
|
|
UdiProductService udiProductService;
|
|
|
|
|
|
|
|
|
|
public void threadUpdateIoCodeTempEntity(String parentCode){
|
|
|
|
|
public void threadUpdateIoCodeTempEntity(String parentCode) {
|
|
|
|
|
List<IoCodeTempEntity> ioCodeTempEntities = ioCodeTempDao.selectList(new LambdaQueryWrapper<IoCodeTempEntity>().eq(IoCodeTempEntity::getCode, parentCode));
|
|
|
|
|
if (CollUtil.isNotEmpty(ioCodeTempEntities)){
|
|
|
|
|
if (CollUtil.isNotEmpty(ioCodeTempEntities)) {
|
|
|
|
|
|
|
|
|
|
//1、排除掉层级是1的
|
|
|
|
|
UdiEntity udi = FilterUdiUtils.getUdi(parentCode);
|
|
|
|
|
if (udi == null)
|
|
|
|
|
return;
|
|
|
|
|
String udi1 = udi.getUdi();
|
|
|
|
|
ProductInfoEntity byNameCode = productInfoService.findByNameCode(udi1);
|
|
|
|
|
UdiProductEntity udiProductEntity = udiProductService.findByNameCode(udi1);
|
|
|
|
|
if (udiProductEntity == null)
|
|
|
|
|
return;
|
|
|
|
|
List<RelCodeBatch> navList = this.list(new LambdaQueryWrapper<RelCodeBatch>()
|
|
|
|
|
.eq(RelCodeBatch::getParentCode, parentCode));
|
|
|
|
|
|
|
|
|
|
if ( (byNameCode != null && "1".equals(byNameCode.getPackLevel()))
|
|
|
|
|
|| (CollUtil.isNotEmpty(navList))
|
|
|
|
|
){
|
|
|
|
|
if ((udiProductEntity != null && "1".equals(udiProductEntity.getPackLevel()))
|
|
|
|
|
|| (CollUtil.isNotEmpty(navList))
|
|
|
|
|
) {
|
|
|
|
|
//打上匹配到了药品关联关系的标记
|
|
|
|
|
for (int i = 0; i < ioCodeTempEntities.size(); i++) {
|
|
|
|
|
IoCodeTempEntity ioCodeTempEntity = ioCodeTempEntities.get(i);
|
|
|
|
|
ioCodeTempEntity.setDrugLink(1);
|
|
|
|
|
ioCodeTempDao.updateById(ioCodeTempEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
ThreadUtil.execAsync(() -> {
|
|
|
|
|
asynThreadUpdateIoCodeTempEntity(parentCode,ioCodeTempEntities);
|
|
|
|
|
asynThreadUpdateIoCodeTempEntity(parentCode, ioCodeTempEntities);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -455,15 +460,15 @@ public class RelCodeBatchService extends ServiceImpl<RelCodeBatchMapper, RelCode
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void asynThreadUpdateIoCodeTempEntity(String parentCode,List<IoCodeTempEntity> ioCodeTempEntities){
|
|
|
|
|
if (this.batchExist(parentCode)){
|
|
|
|
|
public void asynThreadUpdateIoCodeTempEntity(String parentCode, List<IoCodeTempEntity> ioCodeTempEntities) {
|
|
|
|
|
if (this.batchExist(parentCode)) {
|
|
|
|
|
//打上匹配到了药品关联关系的标记
|
|
|
|
|
for (int i = 0; i < ioCodeTempEntities.size(); i++) {
|
|
|
|
|
IoCodeTempEntity ioCodeTempEntity = ioCodeTempEntities.get(i);
|
|
|
|
|
ioCodeTempEntity.setDrugLink(1);
|
|
|
|
|
ioCodeTempDao.updateById(ioCodeTempEntity);
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
//打上匹配不到了药品关联关系的标记
|
|
|
|
|
for (int i = 0; i < ioCodeTempEntities.size(); i++) {
|
|
|
|
|
IoCodeTempEntity ioCodeTempEntity = ioCodeTempEntities.get(i);
|
|
|
|
|