|
|
|
@ -168,6 +168,9 @@ public class StatBean extends AbstractComponent {
|
|
|
|
|
|
|
|
|
|
if(ifEmpty(groupInfo.getCtgrType(), ()-> "").equals("")) {
|
|
|
|
|
key = colValue;
|
|
|
|
|
if(key.equals("")) {
|
|
|
|
|
key = "(정보없음)";
|
|
|
|
|
}
|
|
|
|
|
if(i == 0) {
|
|
|
|
|
compositeKey.setLevel1(key);
|
|
|
|
|
}
|
|
|
|
@ -206,6 +209,10 @@ public class StatBean extends AbstractComponent {
|
|
|
|
|
} else {
|
|
|
|
|
key = colValue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(key.equals("")) {
|
|
|
|
|
key = "(날짜없음)";
|
|
|
|
|
}
|
|
|
|
|
} else if(ctgrType.equals("code") || ctgrType.equals("otherCode")) {
|
|
|
|
|
|
|
|
|
|
if(ctgrType.equals("code")
|
|
|
|
@ -224,6 +231,10 @@ public class StatBean extends AbstractComponent {
|
|
|
|
|
|
|
|
|
|
key = colValue;
|
|
|
|
|
|
|
|
|
|
if(key.equals("")) {
|
|
|
|
|
key = "(정보없음)";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else if(ctgrType.equals("method")) {
|
|
|
|
|
|
|
|
|
|
if(addOption.equals("businessYnOfCar")){
|
|
|
|
@ -239,10 +250,16 @@ public class StatBean extends AbstractComponent {
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
key = colValue;
|
|
|
|
|
if(key.equals("")) {
|
|
|
|
|
key = "(정보없음)";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
key = colValue;
|
|
|
|
|
if(key.equals("")) {
|
|
|
|
|
key = "(정보없음)";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(i == 0) {
|
|
|
|
|