qr code generate

This commit is contained in:
nandar
2018-03-05 11:07:59 +06:30
parent 55bf089d8d
commit b81a6dbc96
10 changed files with 190 additions and 15 deletions

BIN
app/views/.DS_Store vendored

Binary file not shown.

View File

@@ -4,6 +4,11 @@
<a class="breadcrumb-item active" href="#">Batches</a>
</nav>
</div>
<div class="row top-content">
<span style="float: right">
<%= link_to t('.new', :default => t("helpers.links.new")),new_batch_path,:class => 'btn btn-primary' %>
</span>
</div>
<div class="row content">
<div class="col-lg-4">
<label><strong>Search:</strong></label>
@@ -46,7 +51,8 @@
<th>Qty Fail</th>
<th>Export Count</th>
<th>Exported By</th>
<th>Created At</th>
<th>Created At</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@@ -60,6 +66,10 @@
<td><%= batch.export_count %></td>
<td><%= batch.exported_by %></td>
<td><%= batch.created_at.strftime("%e,%b %Y %I:%M %p") rescue '' %></td>
<td>
<%= link_to 'Detail',
batch_path(batch), :class => 'btn btn-primary btn-sm' %>
</td>
</tr>
<% end %>
</tbody>