Merge branch 'tolag3'

This commit is contained in:
leejunho 2024-09-27 11:34:42 +09:00
parent 39ad65b0a5
commit 1840e1c253
2 changed files with 5 additions and 6 deletions

View File

@ -1212,16 +1212,15 @@ public class MainController {
}
private void menuDepth2ChildCnt(List<MenuManageJTreeVO> menuResultList) {
for(MenuManageJTreeVO tmpVO : menuResultList.stream().filter(t -> "2".equals(t.getDepths())).collect(Collectors.toList())) {
List<MenuManageJTreeVO> list = new ArrayList<MenuManageJTreeVO>(menuResultList.stream().filter(t -> "2".equals(t.getDepths())).collect(Collectors.toList()));
for(MenuManageJTreeVO tmpVO : list) {
tmpVO.setChildMenuCnt(
new Long(menuResultList.stream()
.filter( t ->
tmpVO.getMenuNo().equals(t.getUpperMenuId())
)
.count())
.intValue()
.count()
).intValue()
);
}
}

View File

@ -28,7 +28,7 @@
}
function zoomIn() { // 화면크기확대
nowZoom = nowZoom + 20;
nowZoom = nowZoom + 10;
if(nowZoom >= 200) nowZoom = 200; // 화면크기 최대 확대율 200%
zooms();
}