|
|
|
@ -237,6 +237,7 @@ public class AxxyyClient extends CommonHttpClient {
|
|
|
|
|
thrProductsResponse.setName(priceDict.getName());
|
|
|
|
|
thrProductsResponse.setPrice(priceDict.getPrice());
|
|
|
|
|
thrProductsResponse.setYbbm(priceDict.getCountryCode());
|
|
|
|
|
thrProductsResponse.setSpec(replaceData(priceDict.getMemo()));
|
|
|
|
|
thrProductsResponses.add(thrProductsResponse);
|
|
|
|
|
}
|
|
|
|
|
PageSimpleResponse<ThrProductsResponse> thrProductsResponsePageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
@ -249,6 +250,25 @@ public class AxxyyClient extends CommonHttpClient {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String replaceData(String sepll){
|
|
|
|
|
sepll.replace(":", "").replace(":", "");
|
|
|
|
|
// 检查是否包含“规格型号”并替换为空字符串
|
|
|
|
|
if (sepll.contains("规格型号")) {
|
|
|
|
|
sepll = sepll.replace("规格型号", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查是否包含“规格”并替换为空字符串
|
|
|
|
|
if (sepll.contains("规格")) {
|
|
|
|
|
sepll = sepll.replace("规格", "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查是否包含“型号”并替换为空字符串
|
|
|
|
|
if (sepll.contains("型号")) {
|
|
|
|
|
sepll = sepll.replace("型号", "");
|
|
|
|
|
}
|
|
|
|
|
return sepll;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取患者信息--( A003病人信息视图)
|
|
|
|
|
*
|
|
|
|
|