|
|
@ -19,6 +19,7 @@ import com.glxp.api.entity.basic.BasicBussinessTypeEntity;
|
|
|
|
import com.glxp.api.entity.basic.CompanyProductRelevanceEntity;
|
|
|
|
import com.glxp.api.entity.basic.CompanyProductRelevanceEntity;
|
|
|
|
import com.glxp.api.entity.basic.SysWorkplaceDocumentEntity;
|
|
|
|
import com.glxp.api.entity.basic.SysWorkplaceDocumentEntity;
|
|
|
|
import com.glxp.api.entity.collect.*;
|
|
|
|
import com.glxp.api.entity.collect.*;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.inout.IoCodeEntity;
|
|
|
|
import com.glxp.api.entity.inout.IoCodeTempEntity;
|
|
|
|
import com.glxp.api.entity.inout.IoCodeTempEntity;
|
|
|
|
import com.glxp.api.entity.inout.IoOrderEntity;
|
|
|
|
import com.glxp.api.entity.inout.IoOrderEntity;
|
|
|
|
import com.glxp.api.entity.system.SystemParamConfigEntity;
|
|
|
|
import com.glxp.api.entity.system.SystemParamConfigEntity;
|
|
|
@ -32,6 +33,7 @@ import com.glxp.api.req.inout.ReviewFinishRequest;
|
|
|
|
import com.glxp.api.res.basic.BasicSkPrescribeResponse;
|
|
|
|
import com.glxp.api.res.basic.BasicSkPrescribeResponse;
|
|
|
|
import com.glxp.api.res.collect.CollectOrderBizResponse;
|
|
|
|
import com.glxp.api.res.collect.CollectOrderBizResponse;
|
|
|
|
import com.glxp.api.res.collect.IoCollectOrderResponse;
|
|
|
|
import com.glxp.api.res.collect.IoCollectOrderResponse;
|
|
|
|
|
|
|
|
import com.glxp.api.service.basic.CompanyProductRelevanceService;
|
|
|
|
import com.glxp.api.service.basic.IBasicBussinessTypeService;
|
|
|
|
import com.glxp.api.service.basic.IBasicBussinessTypeService;
|
|
|
|
import com.glxp.api.service.basic.SysWorkplaceDocumentService;
|
|
|
|
import com.glxp.api.service.basic.SysWorkplaceDocumentService;
|
|
|
|
import com.glxp.api.service.basic.UdiRlSupService;
|
|
|
|
import com.glxp.api.service.basic.UdiRlSupService;
|
|
|
@ -40,6 +42,8 @@ import com.glxp.api.service.inout.IoCheckInoutService;
|
|
|
|
import com.glxp.api.service.inout.IoOrderService;
|
|
|
|
import com.glxp.api.service.inout.IoOrderService;
|
|
|
|
import com.glxp.api.service.system.SystemParamConfigService;
|
|
|
|
import com.glxp.api.service.system.SystemParamConfigService;
|
|
|
|
import com.glxp.api.util.*;
|
|
|
|
import com.glxp.api.util.*;
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
|
|
import org.jfree.util.Log;
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
import org.springframework.context.annotation.Lazy;
|
|
|
|
import org.springframework.context.annotation.Lazy;
|
|
|
@ -47,11 +51,10 @@ import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.*;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.stream.Collectors;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Slf4j
|
|
|
|
@Service
|
|
|
|
@Service
|
|
|
|
public class IoCollectOrderBackupService extends ServiceImpl<IoCollectOrderBackupMapper, IoCollectOrderBackup> {
|
|
|
|
public class IoCollectOrderBackupService extends ServiceImpl<IoCollectOrderBackupMapper, IoCollectOrderBackup> {
|
|
|
|
|
|
|
|
|
|
|
@ -161,6 +164,9 @@ public class IoCollectOrderBackupService extends ServiceImpl<IoCollectOrderBacku
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
CompanyProductRelevanceService companyProductRelevanceService;
|
|
|
|
|
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
public void generateOrder(String billNo, AuthAdmin authAdmin) {
|
|
|
|
public void generateOrder(String billNo, AuthAdmin authAdmin) {
|
|
|
|
|
|
|
|
|
|
|
@ -201,6 +207,21 @@ public class IoCollectOrderBackupService extends ServiceImpl<IoCollectOrderBacku
|
|
|
|
for (IoCollectOrderCodeMan collectOrderCodeMan : collectOrderCodes) {
|
|
|
|
for (IoCollectOrderCodeMan collectOrderCodeMan : collectOrderCodes) {
|
|
|
|
lossCodesList.add(buildCodeEntity(collectOrderCodeMan, orderEntity));
|
|
|
|
lossCodesList.add(buildCodeEntity(collectOrderCodeMan, orderEntity));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 如果单据类型为供应商的话,则进行供应商产品绑定
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (bussinessTypeEntity.getCorpType() == ConstantStatus.CORP_SP) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Map<Long, List<IoCodeTempEntity>> groupedMap = lossCodesList.stream()
|
|
|
|
|
|
|
|
.collect(Collectors.groupingBy(IoCodeTempEntity::getRelId));
|
|
|
|
|
|
|
|
groupedMap.forEach((key, value) -> {
|
|
|
|
|
|
|
|
companyProductRelevanceService.insertOrReadId(key, collectOrder.getFromCorp());
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
for (IoCodeTempEntity codeTempEntity : lossCodesList) {
|
|
|
|
|
|
|
|
codeTempEntity.setSupId(collectOrder.getFromCorp());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
orderService.insertOrder(orderEntity);
|
|
|
|
orderService.insertOrder(orderEntity);
|
|
|
|
codesTempDao.insertBatch(lossCodesList);
|
|
|
|
codesTempDao.insertBatch(lossCodesList);
|
|
|
|
addInoutService.dealProcess(orderEntity);
|
|
|
|
addInoutService.dealProcess(orderEntity);
|
|
|
@ -229,7 +250,28 @@ public class IoCollectOrderBackupService extends ServiceImpl<IoCollectOrderBacku
|
|
|
|
}
|
|
|
|
}
|
|
|
|
updateReview(authAdmin, orderEntity);
|
|
|
|
updateReview(authAdmin, orderEntity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (IntUtil.value(sysWorkplaceDocumentEntity.getIsMatching()) == 0) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uploadThrid(collectOrder);
|
|
|
|
|
|
|
|
// //插入处方备份表
|
|
|
|
|
|
|
|
// IoCollectOrderBackup ioCollectOrderBackup = new IoCollectOrderBackup();
|
|
|
|
|
|
|
|
// BeanUtils.copyProperties(collectOrder, ioCollectOrderBackup);
|
|
|
|
|
|
|
|
// boolean save = ioCollectOrderBackupService.save(ioCollectOrderBackup);
|
|
|
|
|
|
|
|
// if (!save){
|
|
|
|
|
|
|
|
// throw new JsonException(500,"处方备用上传失败");
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// List<IoCollectOrderBiz> ioCollectOrderBizs = collectOrderBizService.listByBillNo(collectOrder.getBillNo());
|
|
|
|
|
|
|
|
// for (IoCollectOrderBiz ioCollectOrderBiz : ioCollectOrderBizs){
|
|
|
|
|
|
|
|
// IoCollectOrderBizBackup ioCollectOrderBizBackup = new IoCollectOrderBizBackup();
|
|
|
|
|
|
|
|
// BeanUtils.copyProperties(ioCollectOrderBiz, ioCollectOrderBizBackup);
|
|
|
|
|
|
|
|
// boolean save1 = ioCollectOrderBizBackupService.save(ioCollectOrderBizBackup);
|
|
|
|
|
|
|
|
// if (!save1){
|
|
|
|
|
|
|
|
// throw new JsonException(500,"处方备用明细上传失败");
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void uploadThrid(IoCollectOrderBackup collectOrder) {
|
|
|
|
//todo 根据单据类型上传医保或者第三方系统
|
|
|
|
//todo 根据单据类型上传医保或者第三方系统
|
|
|
|
PostCollectOrderRequest orderRequest = new PostCollectOrderRequest();
|
|
|
|
PostCollectOrderRequest orderRequest = new PostCollectOrderRequest();
|
|
|
|
orderRequest.setThirdSys("thirdId");
|
|
|
|
orderRequest.setThirdSys("thirdId");
|
|
|
@ -257,11 +299,8 @@ public class IoCollectOrderBackupService extends ServiceImpl<IoCollectOrderBacku
|
|
|
|
for (RelCodeDetail relCodeDetail : relCodeDetailList) {
|
|
|
|
for (RelCodeDetail relCodeDetail : relCodeDetailList) {
|
|
|
|
codeList.add(relCodeDetail.getCurCode());
|
|
|
|
codeList.add(relCodeDetail.getCurCode());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BaseResponse<List> baseResponseCheckCode = erpBasicClient.collectOrderCheckCodeUploading(codeList);
|
|
|
|
BaseResponse<List> baseResponseCheckCode = erpBasicClient.collectOrderCheckCodeUploading(codeList);
|
|
|
@ -288,29 +327,15 @@ public class IoCollectOrderBackupService extends ServiceImpl<IoCollectOrderBacku
|
|
|
|
throw new JsonException("触发上传 转发至中继服务 到外网 再到国家同步库 接口服务出错:" + stringBaseResponse.getMessage());
|
|
|
|
throw new JsonException("触发上传 转发至中继服务 到外网 再到国家同步库 接口服务出错:" + stringBaseResponse.getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (baseResponse.getCode() == 520) {
|
|
|
|
|
|
|
|
Log.error("上传失败," + baseResponse.getMessage());
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
throw new JsonException("连接第三方系统接口服务出错," + baseResponse.getMessage());
|
|
|
|
throw new JsonException("连接第三方系统接口服务出错," + baseResponse.getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// //插入处方备份表
|
|
|
|
|
|
|
|
// IoCollectOrderBackup ioCollectOrderBackup = new IoCollectOrderBackup();
|
|
|
|
|
|
|
|
// BeanUtils.copyProperties(collectOrder, ioCollectOrderBackup);
|
|
|
|
|
|
|
|
// boolean save = ioCollectOrderBackupService.save(ioCollectOrderBackup);
|
|
|
|
|
|
|
|
// if (!save){
|
|
|
|
|
|
|
|
// throw new JsonException(500,"处方备用上传失败");
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// List<IoCollectOrderBiz> ioCollectOrderBizs = collectOrderBizService.listByBillNo(collectOrder.getBillNo());
|
|
|
|
|
|
|
|
// for (IoCollectOrderBiz ioCollectOrderBiz : ioCollectOrderBizs){
|
|
|
|
|
|
|
|
// IoCollectOrderBizBackup ioCollectOrderBizBackup = new IoCollectOrderBizBackup();
|
|
|
|
|
|
|
|
// BeanUtils.copyProperties(ioCollectOrderBiz, ioCollectOrderBizBackup);
|
|
|
|
|
|
|
|
// boolean save1 = ioCollectOrderBizBackupService.save(ioCollectOrderBizBackup);
|
|
|
|
|
|
|
|
// if (!save1){
|
|
|
|
|
|
|
|
// throw new JsonException(500,"处方备用明细上传失败");
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
UdiRlSupService udiRlSupService;
|
|
|
|
UdiRlSupService udiRlSupService;
|
|
|
|