|
|
|
@ -31,15 +31,9 @@ import com.glxp.mipsdl.dao.thrsys.ThrSystemBusApiDao;
|
|
|
|
|
import com.glxp.mipsdl.entity.auth.AuthUserEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.auth.AuthWarehouseEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.basic.*;
|
|
|
|
|
import com.glxp.mipsdl.entity.ctqyy.BasicSkPrescribeItemEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.ctqyy.MaterialDictEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.ctqyy.PriceClassEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.ctqyy.ThrHslbEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.ctqyy.*;
|
|
|
|
|
import com.glxp.mipsdl.entity.inout.*;
|
|
|
|
|
import com.glxp.mipsdl.entity.thrsys.ThrCorpEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.thrsys.ThrInvWarehouseEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.thrsys.ThrProductsEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.thrsys.ThrSystemBusApiEntity;
|
|
|
|
|
import com.glxp.mipsdl.entity.thrsys.*;
|
|
|
|
|
import com.glxp.mipsdl.http.HttpClient;
|
|
|
|
|
import com.glxp.mipsdl.req.base.*;
|
|
|
|
|
import com.glxp.mipsdl.req.base.forthird.ForInvProductsFilter;
|
|
|
|
@ -50,12 +44,16 @@ import com.glxp.mipsdl.req.zzzyy.ZzzyyRequest;
|
|
|
|
|
import com.glxp.mipsdl.res.BaseResponse;
|
|
|
|
|
import com.glxp.mipsdl.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.mipsdl.res.ctqyy.CtBaseResponse;
|
|
|
|
|
import com.glxp.mipsdl.res.ctqyy.ThrOrderResponse;
|
|
|
|
|
import com.glxp.mipsdl.res.udiwms.*;
|
|
|
|
|
import com.glxp.mipsdl.service.auth.AuthWarehouseService;
|
|
|
|
|
import com.glxp.mipsdl.service.order.OrderUploadLogService;
|
|
|
|
|
import com.glxp.mipsdl.service.system.SysParamConfigService;
|
|
|
|
|
import com.glxp.mipsdl.service.thrsys.ThrCorpService;
|
|
|
|
|
import com.glxp.mipsdl.service.thrsys.ThrSystemDetailService;
|
|
|
|
|
import com.glxp.mipsdl.thirddao.ctqyy.PhysicDictMapper;
|
|
|
|
|
import com.glxp.mipsdl.thirddao.ctqyy.PlanInfoMapper;
|
|
|
|
|
import com.glxp.mipsdl.thirddao.ctqyy.PresInfoMapper;
|
|
|
|
|
import com.glxp.mipsdl.util.*;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.dom4j.Document;
|
|
|
|
@ -116,6 +114,13 @@ public class CtqyyClient extends CommonHttpClient {
|
|
|
|
|
BasicProductsDao basicProductsDao;
|
|
|
|
|
@Resource
|
|
|
|
|
private OrderUploadLogService orderUploadLogService;
|
|
|
|
|
@Resource
|
|
|
|
|
private PhysicDictMapper physicDictMapper;
|
|
|
|
|
@Resource
|
|
|
|
|
private PresInfoMapper presInfoMapper;
|
|
|
|
|
@Resource
|
|
|
|
|
private PlanInfoMapper planInfoMapper;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 拼接xml请求头
|
|
|
|
@ -185,39 +190,71 @@ public class CtqyyClient extends CommonHttpClient {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 器械从三方拉取
|
|
|
|
|
* 药品从视图拉取
|
|
|
|
|
* @param udiwmsProductRequest
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public BaseResponse getProducts(UdiwmsProductRequest udiwmsProductRequest) {
|
|
|
|
|
CtqyyRequest ctqyyRequest = new CtqyyRequest();
|
|
|
|
|
ctqyyRequest.setMsgHeader(getMsgHeader("getMaterialDict"));
|
|
|
|
|
ctqyyRequest.setMsgBody(JSONUtil.toJsonStr(udiwmsProductRequest));
|
|
|
|
|
String response = httpClient.postJson(thrSystemDetailService.getUrlExclude(Constants.URL_NAME_PI_QUERY_URL), ctqyyRequest);
|
|
|
|
|
response = parserResult(response);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse baseResponse = JSONObject.parseObject(response, BaseResponse.class);
|
|
|
|
|
Map map = (Map) baseResponse.getData();
|
|
|
|
|
List<ZzzyyProductsResponse> zzzyyProductsResponse = JSON.parseArray(map.get("list") + "", ZzzyyProductsResponse.class);
|
|
|
|
|
for (ZzzyyProductsResponse productsResponse : zzzyyProductsResponse) {
|
|
|
|
|
//判断要是规格和型号一致就是取规格 不一致就合并
|
|
|
|
|
if (StrUtil.isNotEmpty(productsResponse.getModel_number()) && StrUtil.isNotEmpty(productsResponse.getStandard())) {
|
|
|
|
|
if (productsResponse.getModel_number().equals(productsResponse.getStandard())) {
|
|
|
|
|
productsResponse.setStandard(productsResponse.getStandard());
|
|
|
|
|
} else {
|
|
|
|
|
productsResponse.setStandard(productsResponse.getStandard() + productsResponse.getModel_number());
|
|
|
|
|
if(udiwmsProductRequest.getMedicalType().equals(Constants.MEDICAL_TYPE_DEVICE)){
|
|
|
|
|
CtqyyRequest ctqyyRequest = new CtqyyRequest();
|
|
|
|
|
ctqyyRequest.setMsgHeader(getMsgHeader("getMaterialDict"));
|
|
|
|
|
ctqyyRequest.setMsgBody(JSONUtil.toJsonStr(udiwmsProductRequest));
|
|
|
|
|
String response = httpClient.postJson(thrSystemDetailService.getUrlExclude(Constants.URL_NAME_PI_QUERY_URL), ctqyyRequest);
|
|
|
|
|
response = parserResult(response);
|
|
|
|
|
try {
|
|
|
|
|
BaseResponse baseResponse = JSONObject.parseObject(response, BaseResponse.class);
|
|
|
|
|
Map map = (Map) baseResponse.getData();
|
|
|
|
|
List<ZzzyyProductsResponse> zzzyyProductsResponse = JSON.parseArray(map.get("list") + "", ZzzyyProductsResponse.class);
|
|
|
|
|
for (ZzzyyProductsResponse productsResponse : zzzyyProductsResponse) {
|
|
|
|
|
//判断要是规格和型号一致就是取规格 不一致就合并
|
|
|
|
|
if (StrUtil.isNotEmpty(productsResponse.getModel_number()) && StrUtil.isNotEmpty(productsResponse.getStandard())) {
|
|
|
|
|
if (productsResponse.getModel_number().equals(productsResponse.getStandard())) {
|
|
|
|
|
productsResponse.setStandard(productsResponse.getStandard());
|
|
|
|
|
} else {
|
|
|
|
|
productsResponse.setStandard(productsResponse.getStandard() + productsResponse.getModel_number());
|
|
|
|
|
}
|
|
|
|
|
} else if (StrUtil.isNotEmpty(productsResponse.getModel_number()) && StrUtil.isBlank(productsResponse.getStandard())) {
|
|
|
|
|
productsResponse.setStandard(productsResponse.getModel_number());
|
|
|
|
|
}
|
|
|
|
|
} else if (StrUtil.isNotEmpty(productsResponse.getModel_number()) && StrUtil.isBlank(productsResponse.getStandard())) {
|
|
|
|
|
productsResponse.setStandard(productsResponse.getModel_number());
|
|
|
|
|
}
|
|
|
|
|
map.put("list", JSON.toJSON(zzzyyProductsResponse));
|
|
|
|
|
baseResponse.setData("");
|
|
|
|
|
baseResponse.setData(map);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("解析长泰区医院智业接口返回产品信息字典数据异常,返回结果:{}", response);
|
|
|
|
|
log.error("异常信息:{}", e);
|
|
|
|
|
return ResultVOUtils.error(500, "网络错误,或远程服务器异常无法返回正确结果(" + response + ")");
|
|
|
|
|
}
|
|
|
|
|
map.put("list", JSON.toJSON(zzzyyProductsResponse));
|
|
|
|
|
baseResponse.setData("");
|
|
|
|
|
baseResponse.setData(map);
|
|
|
|
|
return baseResponse;
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("解析长泰区医院智业接口返回产品信息字典数据异常,返回结果:{}", response);
|
|
|
|
|
log.error("异常信息:{}", e);
|
|
|
|
|
return ResultVOUtils.error(500, "网络错误,或远程服务器异常无法返回正确结果(" + response + ")");
|
|
|
|
|
}else if(udiwmsProductRequest.getMedicalType().equals(Constants.MEDICAL_TYPE_DRUG)){
|
|
|
|
|
Map map = new HashMap();
|
|
|
|
|
LambdaQueryWrapper<PhysicDictEntity> wrapper = new LambdaQueryWrapper();
|
|
|
|
|
//补充其他查询条件
|
|
|
|
|
wrapper.eq(StrUtil.isNotBlank(udiwmsProductRequest.getCode()),PhysicDictEntity::getPhysicCode,udiwmsProductRequest.getCode());
|
|
|
|
|
wrapper.eq(StrUtil.isNotBlank(udiwmsProductRequest.getName()),PhysicDictEntity::getPhysicName,udiwmsProductRequest.getName());
|
|
|
|
|
wrapper.eq(StrUtil.isNotBlank(udiwmsProductRequest.getRegisterNo()),PhysicDictEntity::getPhysicNo,udiwmsProductRequest.getRegisterNo());
|
|
|
|
|
List<PhysicDictEntity> physicDictEntities = physicDictMapper.selectList(wrapper);
|
|
|
|
|
List<ThrProductsEntity> thrProductsEntityList = null;
|
|
|
|
|
if(CollUtil.isNotEmpty(physicDictEntities)){
|
|
|
|
|
//数据处理以thr_products 返回
|
|
|
|
|
thrProductsEntityList = physicDictEntities.stream().map(dict -> {
|
|
|
|
|
ThrProductsEntity products = new ThrProductsEntity();
|
|
|
|
|
products.setCode(dict.getPhysicCode());
|
|
|
|
|
products.setName(dict.getPhysicName());
|
|
|
|
|
products.setMeasname(dict.getPhysicUnit());
|
|
|
|
|
products.setSpec(dict.getPhysicSpec());
|
|
|
|
|
products.setRegisterNo(dict.getPhysicNo());
|
|
|
|
|
return products;
|
|
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
}
|
|
|
|
|
map.put("list",thrProductsEntityList);
|
|
|
|
|
return ResultVOUtils.success(map);
|
|
|
|
|
}
|
|
|
|
|
log.error("解析长泰区医院医疗类型,返回结果:{}", udiwmsProductRequest.getMedicalType());
|
|
|
|
|
return ResultVOUtils.error(500,"医疗类型不正确,medicalType:"+udiwmsProductRequest.getMedicalType());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@ -1305,4 +1342,67 @@ public class CtqyyClient extends CommonHttpClient {
|
|
|
|
|
}
|
|
|
|
|
return udiwmsPreInOrderRequest;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 处方拉取视图
|
|
|
|
|
* @param udiwmsBasicSkPrescribeRequest
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public BaseResponse getPrescribes(UdiwmsBasicSkPrescribeRequest udiwmsBasicSkPrescribeRequest) {
|
|
|
|
|
Map map = new HashMap();
|
|
|
|
|
LambdaQueryWrapper<PresInfoEntity> wrapper = new LambdaQueryWrapper();
|
|
|
|
|
//补充其他查询条件
|
|
|
|
|
List<PresInfoEntity> presInfoEntities = presInfoMapper.selectList(wrapper);
|
|
|
|
|
List<BasicSkPrescribeResponse> basicSkPrescribeResponses = null;
|
|
|
|
|
if(CollUtil.isNotEmpty(presInfoEntities)){
|
|
|
|
|
//数据处理以basic_sk_prescribe,basic_sk_prescribe_item 主子返回
|
|
|
|
|
basicSkPrescribeResponses = presInfoEntities.stream().map(pres -> {
|
|
|
|
|
BasicSkPrescribeResponse basicSkPrescribeResponse = new BasicSkPrescribeResponse();
|
|
|
|
|
List<BasicSkPrescribeItemEntity> itemList = new ArrayList<>();
|
|
|
|
|
BasicSkPrescribeItemEntity item = new BasicSkPrescribeItemEntity();
|
|
|
|
|
//TODO 封装数据
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
itemList.add(item);
|
|
|
|
|
basicSkPrescribeResponse.setItemList(itemList);
|
|
|
|
|
return basicSkPrescribeResponse;
|
|
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
}
|
|
|
|
|
map.put("list",basicSkPrescribeResponses);
|
|
|
|
|
return ResultVOUtils.success(map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 采购计划拉取视图
|
|
|
|
|
* @param udiwmsThrOrderRequest
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public BaseResponse getThrOrders(UdiwmsThrOrderRequest udiwmsThrOrderRequest) {
|
|
|
|
|
Map map = new HashMap();
|
|
|
|
|
LambdaQueryWrapper<PlanInfoEntity> wrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
//补充其他查询条件
|
|
|
|
|
List<PlanInfoEntity> planInfoEntities = planInfoMapper.selectList(wrapper);
|
|
|
|
|
List<ThrOrderResponse> thrOrderResponses = null;
|
|
|
|
|
if(CollUtil.isNotEmpty(planInfoEntities)){
|
|
|
|
|
//数据处理以thr_order,thr_order_detail 主子返回
|
|
|
|
|
thrOrderResponses = planInfoEntities.stream().map(plan->{
|
|
|
|
|
ThrOrderResponse thrOrderResponse = new ThrOrderResponse();
|
|
|
|
|
List<ThrOrderDetailEntity> detailList = new ArrayList<>();
|
|
|
|
|
ThrOrderDetailEntity detail = new ThrOrderDetailEntity();
|
|
|
|
|
//TODO 封装数据
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
detailList.add(detail);
|
|
|
|
|
thrOrderResponse.setDetailList(detailList);
|
|
|
|
|
return thrOrderResponse;
|
|
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
}
|
|
|
|
|
map.put("list",thrOrderResponses);
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|