|
|
|
@ -115,6 +115,7 @@ public class Sprt01Controller extends ApplicationController {
|
|
|
|
|
String deptCd = currentUser.getDeptCode();
|
|
|
|
|
String sggCd = globalStngMapper.selectSggCd(deptCd);
|
|
|
|
|
query.setSggCd(sggCd);
|
|
|
|
|
query.setInstCd(institute);
|
|
|
|
|
|
|
|
|
|
List<DataObject> list = null;
|
|
|
|
|
list = sprt01Service.getIntegrationDataList(query);
|
|
|
|
@ -136,7 +137,6 @@ public class Sprt01Controller extends ApplicationController {
|
|
|
|
|
|
|
|
|
|
List<String> ischOnlyDataSet = new ArrayList<>();
|
|
|
|
|
List<String> ischExclDataSet = new ArrayList<>();
|
|
|
|
|
List<String> ischInclDataSet = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
while(pns.hasMoreElements()) {
|
|
|
|
|
|
|
|
|
@ -154,15 +154,13 @@ public class Sprt01Controller extends ApplicationController {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(key.startsWith("ischOnlyData") || key.startsWith("ischExclData") || key.startsWith("ischInclData")) {
|
|
|
|
|
if(key.startsWith("ischOnlyData") || key.startsWith("ischExclData")) {
|
|
|
|
|
String word = this.fnFirstLower(key.substring(12));
|
|
|
|
|
|
|
|
|
|
if(key.startsWith("ischOnlyData")) {
|
|
|
|
|
ischOnlyDataSet.add(word);
|
|
|
|
|
} else if(key.startsWith("ischExclData")) {
|
|
|
|
|
ischExclDataSet.add(word);
|
|
|
|
|
} else if(key.startsWith("ischInclData")) {
|
|
|
|
|
ischInclDataSet.add(word);
|
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
@ -226,7 +224,6 @@ public class Sprt01Controller extends ApplicationController {
|
|
|
|
|
query.setIschKeywordSet(ischKeywordSet);
|
|
|
|
|
query.setIschOnlyDataSet(ischOnlyDataSet);
|
|
|
|
|
query.setIschExclDataSet(ischExclDataSet);
|
|
|
|
|
query.setIschInclDataSet(ischInclDataSet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private String fnFirstLower(String string) {
|
|
|
|
|