125 lines
4.9 KiB
Plaintext
Executable File
125 lines
4.9 KiB
Plaintext
Executable File
<div class="page-header">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="<%= dashboard_path %>"><%= t("views.right_panel.button.home") %></a></li>
|
|
<li class="breadcrumb-item active"><%= t("views.right_panel.detail.shift_sale_report") %></li>
|
|
<span class="float-right">
|
|
<%= link_to 'Back', dashboard_path %>
|
|
</span>
|
|
</ol>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
|
|
<!-- <div class="container"> -->
|
|
<%= render :partial=>'shift_sale_report_filter',
|
|
:locals=>{ :period_type => true, :shift_name => true, :report_path =>reports_shiftsale_index_path} %>
|
|
<hr />
|
|
<!-- </div> -->
|
|
|
|
<!-- <div class="container"> -->
|
|
<!-- <div class="row"> -->
|
|
<div class="text-right">
|
|
<a href="javascript:export_to('<%=reports_shiftsale_index_path%>.xls')" class = "btn btn-info wave-effects"><%= t("views.btn.exp_to_excel") %></a>
|
|
</div>
|
|
<!-- </div> -->
|
|
<!-- </div> -->
|
|
|
|
<div class="margin-top-20">
|
|
<!-- <div class="span11">
|
|
<div id="report_container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
|
|
</div> -->
|
|
<div class="card">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="7"> <%= 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 '-'%>
|
|
|
|
</th>
|
|
</tr>
|
|
<% if @shift_from %>
|
|
<tr>
|
|
<% if @shift_data.employee %>
|
|
<% cashier_name = !@shift_data.nil? ? @shift_data.employee.name : '-' %>
|
|
<% end %>
|
|
<th colspan="7"><%= t("views.right_panel.detail.shift_name") %> = <%= @shift_from %> - <%= @shift_to %> ( <%= cashier_name %> )</th>
|
|
</tr>
|
|
<% end %>
|
|
<tr>
|
|
<th><%= t("views.right_panel.detail.cashier_station") %></th>
|
|
<th><%= t :cashier %> <%= t("views.right_panel.detail.name") %></th>
|
|
<th><%= t("views.right_panel.detail.shift_name") %></th>
|
|
<!-- <th>Void Amount</th> -->
|
|
<th><%= t("views.right_panel.detail.cash_payment") %></th>
|
|
<!-- <th>Credit Charges</th> -->
|
|
<th><%= t("views.right_panel.detail.credit_payment") %></th>
|
|
<!-- <th>FOC Payment</th> -->
|
|
<th><%= t("views.btn.other_payment") %></th>
|
|
<!-- <th>Grand Total
|
|
<br/>Rounding Adj</th> -->
|
|
<!-- <th>Rounding Adj</th> -->
|
|
<th><%= t("views.right_panel.detail.grand_total") %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% void = 0%>
|
|
<% cash = 0%>
|
|
<% credit = 0%>
|
|
<% accept_credit = 0%>
|
|
<% foc = 0%>
|
|
<% card = 0%>
|
|
<% total = 0%>
|
|
<% rounding_adj = 0%>
|
|
<% g_total = 0 %>
|
|
|
|
<% @sale_data.each do |result|%>
|
|
<tr>
|
|
<td>
|
|
<%= result.cashier_terminal.name rescue '-'%>
|
|
</td>
|
|
<td>
|
|
<%= result.employee.name rescue '-'%>
|
|
</td>
|
|
<td><%= result.shift_started_at.strftime("%e %b %I:%M%p") rescue '-' %> -
|
|
<%= result.shift_closed_at.strftime("%e %b %I:%M%p") rescue '-' %>
|
|
</td>
|
|
<!-- <td style='color:red;'>(<%= sprintf "%.2f",result.void_amount.to_f.to_d rescue '-'%>)</td> -->
|
|
<td><%= sprintf "%.2f",result.cash_sales.to_f.to_d rescue '-'%></td>
|
|
<td><%= sprintf "%.2f",result.credit_sales.to_f.to_d rescue '-'%></td>
|
|
<!-- <td><%= sprintf "%.2f",result.accept_credit_amount.to_f.to_d rescue '-'%></td> -->
|
|
<!-- <td><%= sprintf "%.2f",result.foc_amount.to_f.to_d rescue '-'%></td>
|
|
<td><%= sprintf "%.2f",result.card_amount.to_f.to_d rescue '-'%></td> -->
|
|
<td><%= sprintf "%.2f",result.other_sales.to_f.to_d rescue '-'%></td>
|
|
<td><%= sprintf "%.2f",result.grand_total.to_f.to_d rescue '-'%></td>
|
|
|
|
<!-- <td><%= sprintf "%.2f",result.rounding_adj.to_f.to_d rescue '-'%></td> -->
|
|
<% grand_total = result.grand_total.to_f %>
|
|
<!-- <td><%= sprintf "%.2f",grand_tota.to_f.to_d rescue '-'%></td> -->
|
|
</tr>
|
|
<% cash += result.cash_sales.to_f %>
|
|
<% credit += result.credit_sales.to_f %>
|
|
<% card += result.other_sales.to_f %>
|
|
|
|
<% total += result.grand_total.to_f %>
|
|
<% g_total += grand_total.to_f %>
|
|
|
|
<% end %>
|
|
|
|
<tr style="border-top: 3px solid grey;">
|
|
<td colspan="3"></td>
|
|
<!-- <td style='color:red;'><b>(<%= sprintf("%.2f",void) rescue '-'%>)</b></td> -->
|
|
<td><b><%= sprintf("%.2f",cash) rescue '-'%></b></td>
|
|
<td><b><%= sprintf("%.2f",credit) rescue '-'%></b></td>
|
|
<!-- <td><b><%= sprintf("%.2f",accept_credit) rescue '-'%></b></td> -->
|
|
<!-- <td><b><%= sprintf("%.2f",foc) rescue '-'%></b></td> -->
|
|
<td><b><%= sprintf("%.2f",card) rescue '-'%></b></td>
|
|
<!-- <td><b><%= sprintf("%.2f",total) rescue '-'%></b></td> -->
|
|
<!-- <td><b><%= sprintf("%.2f",rounding_adj) rescue '-'%></b></td> -->
|
|
<td><b><%= sprintf("%.2f",g_total) rescue '-'%></b></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div> |