Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
Update format currency in list order
Browse files Browse the repository at this point in the history
  • Loading branch information
htnghia1423 committed Mar 3, 2024
1 parent 71fd941 commit cadb1df
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/webapp/view/jsp/management/order/order.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,18 @@
<table class="table my-0" id="dataTable">
<thead>
<tr>
<th>Mã đặt hàng</th>
<th>Tên khách hàng</th>
<th>Tổng tiền</th>
<th>Thao tác</th>
<th width = '30%'>Mã đặt hàng</th>
<th width = '30%'>Tên khách hàng</th>
<th width = '30%'>Tổng tiền</th>
<th width = '10%'>Thao tác</th>
</tr>
</thead>
<c:forEach items="${requestScope.orders}" var="order">
<tbody>
<tr>
<td><img class="rounded-circle me-2" width="40" height="40" src="<%=request.getContextPath()%>/view/assets/images/icons/order.png">${order.code}</td>
<td>${order.customer.name}</td>
<td>${order.getTotalToString()}</td>
<td>${order.getTotalToString()}</td>
<td class="text-start">
<a class="btn btn-primary btn-sm" role="button" data-bs-toggle="tooltip" data-bss-tooltip="" style="margin: 2px;" title="Thông tin chi tiết" href="<%=request.getContextPath()%>/order-detail?id=${order.ID}">
<i class="la la-info-circle"></i>
Expand Down

0 comments on commit cadb1df

Please sign in to comment.