Commit b1fc725299156c324922401b63e80cb4c4487976

Authored by jiangjiazhi
1 parent b1c9ca0bea

commit

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java View file @ b1fc725
... ... @@ -613,7 +613,7 @@
613 613 for (String srt : factor) {
614 614 if (StringUtils.isNotEmpty(srt)) {
615 615 BasicConfig basicConfig = basicConfigService.getOneBasicConfigById(srt);
616   - if (null != basicConfig && sb.indexOf(basicConfig.getName()) > -1) {
  616 + if (null != basicConfig && sb.indexOf(basicConfig.getName()) == -1) {
617 617 sb.append(basicConfig.getName()).append(',');
618 618 }
619 619 }