61 lines
2.4 KiB
Plaintext
Executable File
61 lines
2.4 KiB
Plaintext
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-type" content="application/vnd.ms-excel; charset=UTF-8">
|
|
</head>
|
|
<body>
|
|
<div class="container margin-top-20">
|
|
<div class="card row">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="7"> From Date : <%= @from.utc.getlocal.strftime("%Y-%b-%d") rescue '-' %> - To Date : <%= @to.utc.getlocal.strftime("%Y-%b-%d") rescue '-' %></th>
|
|
</tr>
|
|
<tr>
|
|
<th><%= t :sale %></th>
|
|
<th><%= t :sale %> <%= t("views.right_panel.detail.item") %></th>
|
|
<th><%= t :commissioner %> <%= t("views.right_panel.detail.name") %></th>
|
|
<th><%= t("views.right_panel.detail.product") %> <%= t("views.right_panel.detail.name") %></th>
|
|
<th><%= t("views.right_panel.detail.qty") %></th>
|
|
<th><%= t("views.right_panel.detail.commission_price") %></th>
|
|
<th><%= t("views.right_panel.detail.commission_amount") %></th>
|
|
<th><%= t("views.right_panel.detail.date") %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% total_qty = 0 %>
|
|
<% total_price = 0 %>
|
|
<% total_amount = 0 %>
|
|
|
|
<% @transaction.each do |result| %>
|
|
<tr>
|
|
<td><%= result.sale_id rescue '-' %></td>
|
|
<td><%= result.sale_item_id rescue '-' %></td>
|
|
<td><%= result.commissioner.name rescue '-' %></td>
|
|
<td><%= result.porduct_name rescue '-' %></td>
|
|
<td><%= sprintf "%.2f", result.qty.to_f.to_d rescue '-' %></td>
|
|
<td><%= sprintf "%.2f", result.price.to_f.to_d rescue '-' %></td>
|
|
<td><%= sprintf "%.2f", result.amount.to_f.to_d rescue '-' %></td>
|
|
<td><%= result.updated_at.strftime("%e %b %Y %I:%M%p") rescue '-' %></td>
|
|
</tr>
|
|
<% total_qty += result.qty.to_f %>
|
|
<% total_price += result.price.to_f %>
|
|
<% total_amount += result.amount.to_f %>
|
|
<% end %>
|
|
|
|
<tr style="border-top: 3px solid grey;">
|
|
<td colspan="2"></td>
|
|
<td><b><%= sprintf("%.2f", total_qty) rescue '-' %></b></td>
|
|
<td><b><%= sprintf("%.2f", total_price) rescue '-' %></b></td>
|
|
<td><b><%= sprintf("%.2f", total_amount) rescue '-' %></b></td>
|
|
<td></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |