diff --git a/src/main/webapp/WEB-INF/views/levy/levy/list.jsp b/src/main/webapp/WEB-INF/views/levy/levy/list.jsp index d283fd1..69c9948 100644 --- a/src/main/webapp/WEB-INF/views/levy/levy/list.jsp +++ b/src/main/webapp/WEB-INF/views/levy/levy/list.jsp @@ -455,14 +455,13 @@ openReviReport: function() { // detailGrid에서 선택된 행 var detailInstance = this.detailGrid.instance; - var selectedDetailRowKey = detailInstance.getFocusedCell() ? detailInstance.getFocusedCell().rowKey : null; - - if (!this.detailSelectedRow) { - alert("리포트를 볼 이행자를 선택해주세요."); + var detailRow = null; + var firstRow = detailInstance.getRow(0); + if (!firstRow) { + alert("이행자 정보가 존재하지 않습니다."); return; } - - var detailRow = detailInstance.getRow(selectedDetailRowKey); + detailRow = firstRow; // masterGrid에서 선택된 행 var masterRow = this.selectedRow; diff --git a/src/main/webapp/ubi4/work/levyReport.jrf b/src/main/webapp/ubi4/work/levyReport.jrf index 9816385..4500558 100644 Binary files a/src/main/webapp/ubi4/work/levyReport.jrf and b/src/main/webapp/ubi4/work/levyReport.jrf differ