111 lines
4.8 KiB
Plaintext
111 lines
4.8 KiB
Plaintext
<div class="row content">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<strong>User List</strong>
|
|
</div>
|
|
<div class="card-block">
|
|
<table class="table" style="border-top:none">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Nrc</th>
|
|
<th>Email</th>
|
|
<th>Phone</th>
|
|
<th>Address</th>
|
|
<th>Status</th>
|
|
<th>Created At </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @users.each do |user| %>
|
|
<tr>
|
|
<td><%= user.name rescue '' %></td>
|
|
<td><%= user.nrc rescue '' %></td>
|
|
<td><%= user.email rescue '' %></td>
|
|
<td><%= user.phone rescue '' %></td>
|
|
<td><%= user.address rescue '' %></td>
|
|
<td></td>
|
|
<td><%= user.created_at.strftime("%e,%b %Y %I:%M %p") rescue '' %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row content">
|
|
<div class="card">
|
|
<div class="card-header"><strong>Latest Batch</strong> </div>
|
|
<div class="card-block">
|
|
<% if @batches.empty? %>
|
|
<p class="center"> <strong>There is no batch created for today.</strong></p>
|
|
<% else %>
|
|
<table class="table" style="border-top:none">
|
|
<thead>
|
|
<tr>
|
|
<th>Order Ref</th>
|
|
<th>Created By</th>
|
|
<th>Qty Processing</th>
|
|
<th>Qty Success</th>
|
|
<th>Qty Fail</th>
|
|
<th>Export Count</th>
|
|
<th>Creatd At</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @batches.each do |batch| %>
|
|
<tr>
|
|
<td><%= batch.order_ref rescue '' %></td>
|
|
<td><%= batch.user_name rescue '' %></td>
|
|
<td><%= batch.qty_processing rescue '' %></td>
|
|
<td><%= batch.qty_success rescue '' %></td>
|
|
<td><%= batch.qty_fail rescue '' %></td>
|
|
<td><%= batch.export_count %></td>
|
|
<td><%= batch.created_at.strftime("%e,%b %Y %I:%M %p") rescue '' %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row content">
|
|
<div class="card">
|
|
<div class="card-header"><strong>Latest Batch Line Item</strong> </div>
|
|
<div class="card-block">
|
|
<% if @batchLineItems.empty? %>
|
|
<p class="center"> <strong>There is no batch line item for today.</strong></p>
|
|
<% else %>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Serail No</th>
|
|
<th>Wristband Code</th>
|
|
<th>Manufacture UID</th>
|
|
<th>Batch No</th>
|
|
<th>Card Type</th>
|
|
<th>Created At </th>
|
|
<th>Update At </th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @batchLineItems.each do |item| %>
|
|
<tr>
|
|
<td><%= item.serial_no rescue '' %></td>
|
|
<td><%= item.wristband_code rescue '' %></td>
|
|
<td><%= item.manufacture_uid rescue '' %></td>
|
|
<td><%= item.batch_name rescue '' %></td>
|
|
<td><%= item.card_type rescue '' %></td>
|
|
<td><%= item.created_at.strftime("%e,%b %Y %I:%M %p") rescue '' %></td>
|
|
<td><%= item.updated_at.strftime("%e,%b %Y %I:%M %p") rescue '' %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end %>
|
|
<%=paginate @batchLineItems %>
|
|
</div>
|
|
</div>
|
|
</div> |