mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-04 19:54:00 +09:00
Merge branch 'master' of https://github.com/suhf/No1WMS
This commit is contained in:
@@ -43,6 +43,7 @@
|
|||||||
<table class="table">
|
<table class="table">
|
||||||
<thead class="table-dark">
|
<thead class="table-dark">
|
||||||
<tr>
|
<tr>
|
||||||
|
<th>번호</th>
|
||||||
<th>제품명</th>
|
<th>제품명</th>
|
||||||
<th>회사명</th>
|
<th>회사명</th>
|
||||||
<th>분류</th>
|
<th>분류</th>
|
||||||
@@ -52,8 +53,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach items="${list }" var="dto">
|
<c:forEach items="${list }" var="dto" varStatus="status">
|
||||||
<tr class="detailTr" data-product_id="${dto.id}" >
|
<tr class="detailTr" data-product_id="${dto.id}" >
|
||||||
|
<td>${status.count }</td>
|
||||||
<td>${dto.name }</td>
|
<td>${dto.name }</td>
|
||||||
<td>${dto.company_name }</td>
|
<td>${dto.company_name }</td>
|
||||||
<td>${dto.categoryDto.cls_nm_4 }</td>
|
<td>${dto.categoryDto.cls_nm_4 }</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user