|
|
|
@ -23,17 +23,23 @@ public class AlihealthKytDrugrescodeResponse extends AlihealthKytCommonParameter
|
|
|
|
|
private Integer page;
|
|
|
|
|
private Integer page_size;
|
|
|
|
|
public boolean judgeCall(String manufactory){
|
|
|
|
|
List<JSONObject> jsonArray = (List) this.getDrug_table_dto();
|
|
|
|
|
boolean bo = false;
|
|
|
|
|
if (jsonArray != null && jsonArray.size() > 0) {
|
|
|
|
|
for (JSONObject jsonObject : jsonArray) {
|
|
|
|
|
String entName = jsonObject.getStr("ent_name");
|
|
|
|
|
if(manufactory.replaceAll("\\(", "(").replace(")", ")")
|
|
|
|
|
.equals(entName.replaceAll("\\(", "(").replace(")", ")"))){
|
|
|
|
|
bo = true;
|
|
|
|
|
|
|
|
|
|
if(StringUtils.isNotEmpty(manufactory)){
|
|
|
|
|
List<JSONObject> jsonArray = (List) this.getDrug_table_dto();
|
|
|
|
|
if (jsonArray != null && jsonArray.size() > 0) {
|
|
|
|
|
for (JSONObject jsonObject : jsonArray) {
|
|
|
|
|
String entName = jsonObject.getStr("ent_name");
|
|
|
|
|
if(manufactory.replaceAll("\\(", "(").replace(")", ")")
|
|
|
|
|
.equals(entName.replaceAll("\\(", "(").replace(")", ")"))){
|
|
|
|
|
bo = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
bo = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(org.apache.commons.lang.StringUtils.isNotEmpty(this.getMsg_info()) && this.getMsg_info().equals("调用成功") && bo){
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|