계획조회모달에서 결재권한 null 오류 수정.
parent
5742f63f96
commit
53d2149614
|
|
@ -138,7 +138,8 @@
|
|||
|
||||
|
||||
</div>
|
||||
<div class="col-12" th:if="${(#strings.contains(apprvAuth, 'APC003') or #strings.contains(apprvAuth, 'APC004')) and plan.planState eq 'DST002'
|
||||
<div class="col-12" th:unless="${apprvAuth eq null}">
|
||||
<th:block th:if="${(#strings.contains(apprvAuth, 'APC003') or #strings.contains(apprvAuth, 'APC004')) and plan.planState eq 'DST002'
|
||||
or (#strings.contains(apprvAuth, 'APC001') or #strings.contains(apprvAuth, 'APC002')) and plan.planState eq 'DST004'}">
|
||||
<form action="#" method="post" id="apprvForm">
|
||||
<div class="row">
|
||||
|
|
@ -160,6 +161,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</th:block>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue