BIZ_DATA 배열내에 있는 경우 못찾는 문제 처리
This commit is contained in:
@@ -284,7 +284,7 @@ public class StandardMessageUtil {
|
|||||||
if (item.getLevel() == curItem.getLevel() + 1) {
|
if (item.getLevel() == curItem.getLevel() + 1) {
|
||||||
if (curItem.getType() == StandardType.GRID) {
|
if (curItem.getType() == StandardType.GRID) {
|
||||||
curItem.addArrayItem(0,
|
curItem.addArrayItem(0,
|
||||||
setRecursiveItems(message, itemList, i, getFullPath(parentPath, curItem.getName())));
|
setRecursiveItems(message, itemList, i, getFullPath(parentPath, curItem.getName() + "[0]")));
|
||||||
} else {
|
} else {
|
||||||
curItem.addItem(
|
curItem.addItem(
|
||||||
setRecursiveItems(message, itemList, i, getFullPath(parentPath, curItem.getName())));
|
setRecursiveItems(message, itemList, i, getFullPath(parentPath, curItem.getName())));
|
||||||
@@ -292,10 +292,10 @@ public class StandardMessageUtil {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// if (curItem.getType() == StandardType.BIZDATA) {
|
if (curItem.getType() == StandardType.BIZDATA) {
|
||||||
// message.setBizDataPath(getFullPath(parentPath, curItem.getName()));
|
message.setBizDataPath(getFullPath(parentPath, curItem.getName()));
|
||||||
// logger.debug("@@@ BIZ DATA PATH = {}", message.getBizDataPath());
|
logger.debug("@@@ BIZ DATA PATH = {}", message.getBizDataPath());
|
||||||
// }
|
}
|
||||||
|
|
||||||
if (curItem.getDataType() == StandardDataType.LL_NUMBER) {
|
if (curItem.getDataType() == StandardDataType.LL_NUMBER) {
|
||||||
message.setLlDataPath(getFullPath(parentPath, curItem.getName()));
|
message.setLlDataPath(getFullPath(parentPath, curItem.getName()));
|
||||||
|
|||||||
Reference in New Issue
Block a user