BIZ_DATA 배열내에 있는 경우 못찾는 문제 처리

This commit is contained in:
curry772
2026-06-14 11:56:05 +09:00
parent 44e3f686a4
commit ec48226671
@@ -284,7 +284,7 @@ public class StandardMessageUtil {
if (item.getLevel() == curItem.getLevel() + 1) {
if (curItem.getType() == StandardType.GRID) {
curItem.addArrayItem(0,
setRecursiveItems(message, itemList, i, getFullPath(parentPath, curItem.getName())));
setRecursiveItems(message, itemList, i, getFullPath(parentPath, curItem.getName() + "[0]")));
} else {
curItem.addItem(
setRecursiveItems(message, itemList, i, getFullPath(parentPath, curItem.getName())));
@@ -292,10 +292,10 @@ public class StandardMessageUtil {
}
}
} else {
// if (curItem.getType() == StandardType.BIZDATA) {
// message.setBizDataPath(getFullPath(parentPath, curItem.getName()));
// logger.debug("@@@ BIZ DATA PATH = {}", message.getBizDataPath());
// }
if (curItem.getType() == StandardType.BIZDATA) {
message.setBizDataPath(getFullPath(parentPath, curItem.getName()));
logger.debug("@@@ BIZ DATA PATH = {}", message.getBizDataPath());
}
if (curItem.getDataType() == StandardDataType.LL_NUMBER) {
message.setLlDataPath(getFullPath(parentPath, curItem.getName()));