모니터링 지정보고 일부 수정

master
Hyung Geun 2023-01-31 15:03:53 +09:00
parent c4aa0b4c41
commit b5ebaf2a6d
2 changed files with 14 additions and 9 deletions

View File

@ -35,7 +35,7 @@
<input type="text" class="form-control form-control-sm" id="mdTitle" name="mdTitle" th:value="${md.mdTitle}"> <input type="text" class="form-control form-control-sm" id="mdTitle" name="mdTitle" th:value="${md.mdTitle}">
</div> </div>
</div> </div>
<div class="row mb-1"><h6 class="text-center">모니터링 대상자</h6></div> <div class="row"><h6 class="text-start">모니터링 대상자</h6></div>
<div class="row mb-1"> <div class="row mb-1">
<label for="affairType1" class="col-sm-1 col-form-label col-form-label-sm text-center">*성명</label> <label for="affairType1" class="col-sm-1 col-form-label col-form-label-sm text-center">*성명</label>
<div class="col-sm-2"> <div class="col-sm-2">

View File

@ -100,20 +100,25 @@
<th:block th:each="apprv:${md.apprvList}"> <th:block th:each="apprv:${md.apprvList}">
<div class="row"> <div class="row">
<th:block th:each="commonCode:${session.commonCode.get('DST')}"> <th:block th:each="commonCode:${session.commonCode.get('DST')}">
<label class="col-sm-2 col-form-label col-form-label-sm text-center" th:if="${commonCode.itemCd eq apprv.state}" th:text="|결재결과: ${commonCode.itemValue}|"></label> <label class="col-sm-2 col-form-label col-form-label-sm text-center" th:if="${commonCode.itemCd eq apprv.state}" >결재결과:</label>
<label class="col-sm-2 col-form-label col-form-label-sm text-start" th:if="${commonCode.itemCd eq apprv.state}" th:text="${commonCode.itemValue}"></label>
</th:block> </th:block>
<label class="col-sm-2 col-form-label col-form-label-sm text-center"> <label class="col-sm-2 col-form-label col-form-label-sm text-center">
<th:block th:each="commonCode:${session.commonCode.get('JT')}"> <th:block th:each="commonCode:${session.commonCode.get('JT')}">
<th:block th:if="${commonCode.itemCd eq apprv.userGrd}" th:text="|결제자: ${commonCode.itemValue} ${apprv.userNm}|"></th:block> <th:block th:if="${commonCode.itemCd eq apprv.userGrd}" th:text="|결제자: ${commonCode.itemValue} ${apprv.userNm}|"></th:block>
</th:block> </th:block>
</label> </label>
<label class="col-sm-2 col-form-label col-form-label-sm text-center"> <div class="col-12 text-center row border-top-0 border-secondary">
<th:block th:text="|기타의견: ${apprv.etc}|"></th:block> <span class="col-sm-1 border-end border-secondary col-form-label col-form-label-sm text-center fw-bold">기타의견 : </span>
</label> <span class="col-sm-5 border-end border-secondary col-form-label col-form-label-sm text-start fw-bold"><th:block
<label class="col-sm-4 col-form-label col-form-label-sm text-center"> th:text="${apprv.etc}"></th:block></span>
<th:block th:text="|결제일시: ${#temporals.format(apprv.saveDt, 'yyyy-MM-dd HH:mm:ss')}|"></th:block> </div>
</label>
<div class="col-12 text-center row border-top-0 border-secondary">
<span class="col-sm-1 border-end border-secondary col-form-label col-form-label-sm text-center fw-bold">결재일시 : </span>
<span class="col-sm-5 border-end border-secondary col-form-label col-form-label-sm text-start "><th:block
th:text="${#temporals.format(apprv.saveDt, 'yyyy-MM-dd HH:mm:ss')}"></th:block></span>
</div>
</div> </div>
</th:block> </th:block>
</div> </div>