101 lines
4.2 KiB
Plaintext
Executable File
101 lines
4.2 KiB
Plaintext
Executable File
<div class="margin-top-20">
|
|
<div class="card">
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="9">
|
|
<strong>
|
|
<%= t("views.right_panel.detail.from_date") %> : <%= @from.utc.getlocal.strftime("%Y-%b-%d") rescue '-' %> - <%= t("views.right_panel.detail.to_date") %> : <%= @to.utc.getlocal.strftime("%Y-%b-%d") rescue '-'%>
|
|
</strong>
|
|
</th>
|
|
</tr>
|
|
<% if @shift_from %>
|
|
<tr>
|
|
<% if @shift_data.employee %>
|
|
<% cashier_name = !@shift_data.nil? ? @shift_data.employee.name : '-' %>
|
|
<% end %>
|
|
<th colspan="9">
|
|
<strong><%= t("views.right_panel.detail.shift_name") %> = <%= @shift_from %> - <%= @shift_to %> ( <%= cashier_name %> )</strong>
|
|
</th>
|
|
</tr>
|
|
<% end %>
|
|
<tr>
|
|
<th><%= t("views.right_panel.detail.mpu_sales") %></th>
|
|
<th><%= t("views.right_panel.detail.master_sales") %></th>
|
|
<th><%= t("views.right_panel.detail.visa_sales") %></th>
|
|
<th><%= t("views.right_panel.detail.jcb_sales") %></th>
|
|
<th><%= t("views.right_panel.detail.redeem_sales") %></th>
|
|
<th><%= t("views.right_panel.detail.cash_sales") %></th>
|
|
<th><%= t("views.right_panel.detail.credit_sales") %></th>
|
|
<th><%= t("views.right_panel.detail.foc_sales") %></th>
|
|
</tr>
|
|
</thead>
|
|
<% unless @sale_data.empty? %>
|
|
<tbody>
|
|
<% @sale_data.each do |sale| %>
|
|
<tr>
|
|
<td><%= number_with_delimiter(sprintf("%.2f",sale[:mpu_amount]), :delimiter => ',') rescue '-'%></td>
|
|
<td><%= number_with_delimiter(sprintf("%.2f",sale[:master_amount]), :delimiter => ',') rescue '-'%></td>
|
|
<td><%= number_with_delimiter(sprintf("%.2f",sale[:visa_amount]), :delimiter => ',') rescue '-'%></td>
|
|
<td><%= number_with_delimiter(sprintf("%.2f",sale[:jcb_amount]), :delimiter => ',') rescue '-'%></td>
|
|
<td><%= number_with_delimiter(sprintf("%.2f",sale[:paypar_amount]), :delimiter => ',') rescue '-'%></td>
|
|
<td><%= number_with_delimiter(sprintf("%.2f",sale[:cash_amount]-sale[:total_change_amount]), :delimiter => ',') rescue '-'%></td>
|
|
<td><%= number_with_delimiter(sprintf("%.2f",sale[:credit_amount]), :delimiter => ',') rescue '-'%></td>
|
|
<td><%= number_with_delimiter(sprintf("%.2f",sale[:foc_amount]), :delimiter => ',') rescue '-'%></td>
|
|
</tr>
|
|
<% end %>
|
|
|
|
</tbody>
|
|
<% end %>
|
|
</table>
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<%if @payment_type.present?%>
|
|
<tr>
|
|
<td colspan="6"><strong><%=@payment_type.upcase%> Payment Details</strong></td>
|
|
</tr>
|
|
<%else%>
|
|
<tr>
|
|
<td colspan="6"><strong>All Payment Details</strong></td>
|
|
</tr>
|
|
<%end%>
|
|
|
|
<tr>
|
|
<th> <%= t("views.right_panel.detail.shift_name") %> </th>
|
|
<th> <%= t("views.right_panel.detail.receipt_no") %></th>
|
|
<th> <%= t :cashier %> <%= t("views.right_panel.detail.name") %></th>
|
|
<th> <%= t :payment_method %></th>
|
|
<th> <%= t("views.right_panel.detail.amount") %> </th>
|
|
<th><%= t("views.right_panel.detail.grand_total") %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% total = 0 %>
|
|
<% @pyament_method.each do |payment| %>
|
|
<% total += payment.payment_amount %>
|
|
<tr>
|
|
<% if @shift_from.nil? && @shift_to.nil? %>
|
|
<td><%= payment.sale_date.utc.getlocal.strftime("%e %b %I:%M%p") rescue '-'%></td>
|
|
<% else %>
|
|
<td><%= @shift_from rescue '-'%> - <%= @shift_to rescue '-'%></td>
|
|
<% end %>
|
|
<td><%= payment.receipt_no rescue '-' %></td>
|
|
<td><%= payment.cashier_name rescue '-' %></td>
|
|
<!--<td><%= payment.sale.customer.name rescue '-' %></td>-->
|
|
<td><%= payment.payment_method rescue '-' %></td>
|
|
<td><%= payment.payment_amount rescue '-' %></td>
|
|
<td><%= payment.sale.grand_total rescue '-' %></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
<%if total>0%>
|
|
<tr>
|
|
<td colspan="4" style="text-align: right;"><strong >Total </strong></td>
|
|
<td colspan="2"><strong><%=total%></strong></td>
|
|
</tr>
|
|
<%end%>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div> |