출퇴근관리콘솔 list.html 수정

This commit is contained in:
hehihoho3@gmail.com 2024-10-30 12:46:36 +09:00
parent db220dd7b0
commit 797931129b

View File

@ -70,7 +70,7 @@
<option th:each="year : ${#numbers.sequence(2023, 2022 + 40)}"
th:value="${year}"
th:text="${year}"
th:selected="${year.toString() == itnCommuteVO.searchYear}"></option>
th:selected="${year.toString() == commuteVO.searchYear}"></option>
</select>
</div>
</div>
@ -81,7 +81,7 @@
<option th:each="month : ${#numbers.sequence(1, 12)}"
th:value="${month}"
th:text="${month}"
th:selected="${month.toString() == itnCommuteVO.searchMonth}"></option>
th:selected="${month.toString() == commuteVO.searchMonth}"></option>
</select>
</div>
</div>
@ -92,7 +92,7 @@
<option th:each="day : ${#numbers.sequence(1, 31)}"
th:value="${day}"
th:text="${day}"
th:selected="${day.toString() == itnCommuteVO.searchDay}"></option>
th:selected="${day.toString() == commuteVO.searchDay}"></option>
</select>
</div>
</div>
@ -112,7 +112,7 @@
</thead>
<tbody>
<tr th:each="row, stat : ${list}">
<td th:text="${itnCommuteVO.searchYear + '-' + itnCommuteVO.searchMonth + '-' + itnCommuteVO.searchDay}"></td>
<td th:text="${commuteVO.searchYear + '-' + commuteVO.searchMonth + '-' + commuteVO.searchDay}"></td>
<td th:text="${row.usrid}"></td>
<td th:text="${row.pstn}"></td>
<td th:text="${row.firstActivityTime}"></td>