cut-to-pack-service/target/classes/templates/cutting/child-bundles.html

35 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<table class="table table-bordered font-sm">
<thead></thead>
<tr>
<th>ID</th>
<th>Item ID</th>
<th>Sku</th>
<th>JC ID</th>
<th>Wrap Quantity</th>
<th>Type</th>
<th>Created At</th>
<th>Created By</th>
</tr>
<tbody>
<tr th:each="bundle : ${bundles}">
<td th:text="${bundle.id}"></td>
<td th:text="${bundle.itemId}"></td>
<td th:text="${bundle.sku}"></td>
<td th:text="${bundle.jobCardId}"></td>
<td th:text="${bundle.wrapQuantity}"></td>
<td th:text="${bundle.type}"></td>
<td ctp:formatdatetime="${bundle.createdAt}"></td>
<td th:text="${bundle.createdBy}"></td>
</tr>
</tbody>
</table>
</body>
</html>