Orders
Order List
Order No | Customer Name | OrderDate Time | Total Amount | Order Status | Payment Status | Action | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
<%=order.orderNo%> | <%=order?.customer?.fullName%> | <%= moment(order.createdAt).format('DD MMM, YYYY hh:mm a')%> | ₹ <%=order.total%> | <% if (order.status === 'Cancelled' || order.status === 'Rejected') { %><%= order.status %> | <% }else if (order.status === 'Delivered') { %><%= order.status %> | <% }else if (order.status === 'Out For Delivery') { %><%= order.status %> | <% }else if (order.status === 'Shipped') { %><%= order.status %> | <% }else if (order.status === 'Accepted') { %><%= order.status %> | <% }else if (order.status === 'Ready To Ship') { %><%= order.status %> | <% } else { %><%= order.status %> | <% } %> <% if (order.paymentStatus == 'Pending') { %><%= order.paymentStatus %> | <% } else if (order.paymentStatus == 'Success') { %><%= order.paymentStatus %> | <% } else if (order.paymentStatus == 'Failed') { %><%= order.paymentStatus %> | <% } %>
Sorry! No Result Found
We've searched more than 150+ coupons We did not find any coupons for you search.
Showing
<% if (((currentPage - 1) * pageSize) + 1 == listCount) { %>
<%= listCount %>
<% } else { %>
<%= ((currentPage - 1) * pageSize) + 1 %> to <%= currentPage == pageCount ? listCount : (currentPage * pageSize) %>
<% } %>
of <%= listCount %> entries
<% if (currentPage > 1) { %>
Previous
<% } else { %>
Previous
<% } %>
-
<% for (var j = 1; j <= pageCount; j++) { %>
<% if (j >= currentPage - 2 && j <= currentPage + 2) { %>
<% if (currentPage == j) { %>
- <%= j %> <% } else { %>
- <%= j %> <% } %> <% } %> <% } %>