fix : 사건보고서 연관보고서 모달 안나오는거 수정
parent
315db4b5cf
commit
cf492b0e29
|
|
@ -85,7 +85,7 @@ public class IvsgtController {
|
|||
ModelAndView mav = new ModelAndView("ivsgt/searchViewModal");
|
||||
mav.addObject("userSeq",loginUser.getUserSeq());
|
||||
//메뉴권한 확인
|
||||
mav.addObject("accessAuth", authMgtService.selectAccessConfigList(loginUser.getUserSeq(), "/ivsgt/"+boardInvestigation.getIvsgtType()).get(0).getAccessAuth());
|
||||
mav.addObject("accessAuth", authMgtService.selectAccessConfigList(loginUser.getUserSeq(), "/ivsgt/arrest").get(0).getAccessAuth());
|
||||
|
||||
boardInvestigation.setIvsgtType(null);
|
||||
mav.addObject("boardInvestigationList", boardInvestigationService.selectBoardInvestigationList(boardInvestigation));
|
||||
|
|
|
|||
|
|
@ -6,10 +6,12 @@
|
|||
<mapper namespace="com.dbnt.faisp.main.ivsgtMgt.boardInvestigation.mapper.BoardInvestigationMapper">
|
||||
<sql id="selectBoardInvestigationListWhere">
|
||||
<where>
|
||||
<if test='downOrganCdList != null'>
|
||||
and a.wrt_organ in
|
||||
<foreach collection="downOrganCdList" item="organCd" separator="," open="(" close=")">
|
||||
#{organCd}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test='ivsgtType != null and ivsgtType != ""'>
|
||||
AND ivsgt_type = #{ivsgtType}
|
||||
</if>
|
||||
|
|
|
|||
Loading…
Reference in New Issue