mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-04 12:13:24 +09:00
오늘의 입고 수정
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
<!-- 세 번째 공간 -->
|
||||
<div>
|
||||
<div class=" text-center">
|
||||
<h5>부족한 재고</h5>
|
||||
<h5><b>부족한 재고</b></h5>
|
||||
</div>
|
||||
<table class="table">
|
||||
<thead class="table-dark">
|
||||
@@ -61,7 +61,7 @@
|
||||
<!--네 번째 공간 -->
|
||||
<div>
|
||||
<div class=" text-center">
|
||||
<h5>오늘의 입고</h5>
|
||||
<h5><b>오늘의 입고</b></h5>
|
||||
</div>
|
||||
<table class="table">
|
||||
<thead class="table-dark">
|
||||
@@ -74,7 +74,10 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:choose>
|
||||
<c:when test="${not empty inDto}">
|
||||
<c:forEach items="${inDto}" var="dto" varStatus="status">
|
||||
<c:if test="${not empty dto.productDto.name}">
|
||||
<tr class="detailTr2 col-5" data-id="${dto.id}" style="font-size: small;">
|
||||
<td class="col-1">${status.count}</td>
|
||||
<td class="col-1">${dto.productDto.name}</td>
|
||||
@@ -87,7 +90,15 @@
|
||||
<td class="col-1">${dto.quantity}</td>
|
||||
<td class="col-1">${dto.warehouseDto.name}</td>
|
||||
</tr>
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<tr>
|
||||
<td colspan="5" class="text-center">당일 입고된 제품이 없습니다.</td>
|
||||
</tr>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user