259 lines
9.4 KiB
Plaintext
Executable File
259 lines
9.4 KiB
Plaintext
Executable File
<% breadcrumb_add t("views.right_panel.detail.receipt_no_report"), "", dashboard_path %>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
|
|
<!-- <div class="container"> -->
|
|
<%= render :partial=>'shift_sale_report_filter',
|
|
:locals=>{ :period_type => true, :shift_name => true,:payments => true, :report_path =>reports_receipt_no_index_path} %>
|
|
<hr />
|
|
<!-- </div> -->
|
|
|
|
<!-- <div class="container"> -->
|
|
<!-- <div class="row"> -->
|
|
<div class="text-right">
|
|
<a href="javascript:export_to('<%=reports_receipt_no_index_path%>.xls')" class = "btn btn-info wave-effects"><%= t("views.btn.exp_to_excel") %></a>
|
|
</div>
|
|
<!-- </div> -->
|
|
<!-- </div> -->
|
|
|
|
<div class="margin-top-20 mbl-table">
|
|
<div class="card mbl-table-card">
|
|
<table class="table table-striped" border="0">
|
|
<thead>
|
|
|
|
<tr>
|
|
<th colspan="9"> <%= 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="9"><%= t("views.right_panel.detail.shift_name") %> = <%= @shift_from %> - <%= @shift_to %> ( <%= cashier_name %> )</th>
|
|
</tr>
|
|
<% end %>
|
|
|
|
<tr>
|
|
<th><%= t("views.right_panel.detail.dining") %></th>
|
|
<th><%= t("views.right_panel.detail.receipt_no") %></th>
|
|
<th><%= t :customer %></th>
|
|
<th><%= t :cashier %></th>
|
|
<th><%= t("views.right_panel.detail.total") %> <%= t("views.right_panel.detail.amount") %></th>
|
|
<th><%= t("views.right_panel.detail.discount") %> <%= t("views.right_panel.detail.amount") %> </th>
|
|
<% @tax_profiles.each do |tax| %>
|
|
<th><%= tax.name %></th>
|
|
<% end %>
|
|
<!-- <th>Other Amount</th> -->
|
|
<th><%= t("views.right_panel.detail.grand_total") %></th>
|
|
<th><%= t("views.right_panel.detail.rnd_adj_sh") %></th>
|
|
<th><%= t("views.right_panel.detail.grand_total") %> +<br/>
|
|
<%= t("views.right_panel.detail.rnd_adj_sh") %>
|
|
</th>
|
|
<th><%= "Action" %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% grand_total = 0 %>
|
|
<% old_grand_total = 0 %>
|
|
<% after_rounding = 0 %>
|
|
<% total_tax = 0 %>
|
|
<% guest_count = 0 %>
|
|
<% total_sum = 0 %>
|
|
<% discount_amt = 0 %>
|
|
<% other_amt = 0 %>
|
|
<% total_nett = 0 %>
|
|
<% rounding_adj = 0%>
|
|
<% gov_tax = 0 %>
|
|
<% service_charge = 0 %>
|
|
|
|
<% if !@sale_data.nil? %>
|
|
|
|
<% @sale_data.each do |result| %>
|
|
<% grand_total += result.grand_total.to_f %>
|
|
<% old_grand_total += result.grand_total.to_f - result.rounding_adjustment.to_f %>
|
|
<% total_tax += result.total_tax.to_f %>
|
|
<% total_sum += result.total_amount.to_f %>
|
|
<% discount_amt += result.total_discount.to_f %>
|
|
<% rounding_adj += result.rounding_adjustment.to_f %>
|
|
|
|
<tr>
|
|
<td>
|
|
<%if result.type %>
|
|
<%= result.type %> - <%= result.name %>
|
|
<% else %>
|
|
-
|
|
<% end %>
|
|
</td>
|
|
<td><%= result.receipt_no rescue '-' %> </td>
|
|
<td><%= result.customer_name rescue '-' %></td>
|
|
<td><%= result.cashier_name rescue '-' %></td>
|
|
<td><%= number_format(result.total_amount, precision: precision.to_i, delimiter: delimiter) %></td>
|
|
<td><%= number_format(result.total_discount, precision: precision.to_i, delimiter: delimiter) rescue '0' %></td>
|
|
<% @tax_profiles.each do |tax| %>
|
|
<% if sale_tax = result.sale_taxes.find { |sale_tax| sale_tax.tax_name == tax.name } %>
|
|
<td><%= number_format(sale_tax.tax_payable_amount, precision: precision.to_i, delimiter: delimiter) rescue '-' %> </td>
|
|
<% else %>
|
|
<td><%= number_format(0, precision: precision.to_i, delimiter: delimiter) rescue '-' %></td>
|
|
<% end %>
|
|
<% end %>
|
|
<td><%= number_format(result.grand_total - result.rounding_adjustment, precision: precision.to_i, delimiter: delimiter) rescue '-' %></td>
|
|
<td><%= number_format(result.rounding_adjustment.to_f, precision: precision.to_i, delimiter: delimiter) rescue '-' %></td>
|
|
<td><%= number_format(result.grand_total, precision: precision.to_i, delimiter: delimiter) rescue '-' %></td>
|
|
<% if @lookup.value.to_i == 1 %>
|
|
<td>
|
|
<!-- ############### Need to Check SyncStatus ############# -->
|
|
<%= link_to "Sync", reports_sync_data_path(:sale_id => result.sale_id), class:"btn btn-info wave-effects" %>
|
|
<!-- ###################################################### -->
|
|
|
|
<%= link_to "Print", reports_receipt_reprint_path(result.sale_id), class:"btn btn-info wave-effects" %>
|
|
</td>
|
|
<% else %>
|
|
<td>
|
|
<%= link_to "Sync", reports_sync_data_path(:sale_id => result.sale_id), class:"btn btn-info wave-effects" %>
|
|
</td>
|
|
<% end %>
|
|
</tr>
|
|
<% end %>
|
|
<tr style="border-top:4px double #666;">
|
|
<td colspan="4"> </td>
|
|
<td><b><%= number_format(total_sum, precision: precision.to_i, delimiter: delimiter) rescue '-' %></b></td>
|
|
<td><b><%= number_format(discount_amt, precision: precision.to_i, delimiter: delimiter) rescue '-' %></b></td>
|
|
<% @tax_profiles.each do |tax| %>
|
|
<% if sale_tax = @sale_taxes.find { |sale_tax| sale_tax.tax_name == tax.name } %>
|
|
<td><%= number_format(sale_tax.st_amount, precision: precision.to_i, delimiter: delimiter) rescue '-' %> </td>
|
|
<% else %>
|
|
<td><%= number_format(0, precision: precision.to_i, delimiter: delimiter) rescue '-' %></td>
|
|
<% end %>
|
|
<% end %>
|
|
<td><b><%= number_format(old_grand_total.to_f, precision: precision.to_i, delimiter: delimiter) rescue '0' %></b></td>
|
|
<td><b><%= number_format(rounding_adj.to_f, precision: precision.to_i, delimiter: delimiter) rescue '-' %></b></td>
|
|
<td><b><%= number_format(grand_total.to_f, precision: precision.to_i, delimiter: delimiter) rescue '-' %></b></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="4"> </td>
|
|
<td><%= t("views.right_panel.detail.total") %> <%= t("views.right_panel.detail.amount") %></td>
|
|
<td><%= t("views.right_panel.detail.discount") %> <%= t("views.right_panel.detail.amount") %></td>
|
|
|
|
<% @tax_profiles.each do |tax| %>
|
|
<td><%= tax.name %></td>
|
|
<% end %>
|
|
<td><%= t("views.right_panel.detail.grand_total") %></td>
|
|
<td><%= t("views.right_panel.detail.rnd_adj_sh") %></td>
|
|
<td><%= t("views.right_panel.detail.grand_total") %> +<br/>
|
|
<%= t("views.right_panel.detail.rnd_adj_sh") %>
|
|
</td>
|
|
<td>
|
|
</td>
|
|
</tr>
|
|
<%end%>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$(function(){
|
|
|
|
var check_arr = [];
|
|
search_by_period();
|
|
$('#sel_period').change(function(){
|
|
|
|
search_by_period();
|
|
|
|
});
|
|
|
|
function search_by_period(){
|
|
var period = $('#sel_period').val();
|
|
var period_type = 0;
|
|
var from = "";
|
|
var to = "";
|
|
|
|
show_shift_name(period,period_type,from,to,'shift_item');
|
|
}
|
|
|
|
// OK button is clicked
|
|
$('#from').bootstrapMaterialDatePicker().on('beforeChange', function(e, date){
|
|
new_date = new Date(date) ;
|
|
month = parseInt(new_date.getMonth()+1)
|
|
from = new_date.getDate() + "-" + month + "-" + new_date.getFullYear();
|
|
$('#from').val(from)
|
|
search_by_date();
|
|
});
|
|
$('#to').bootstrapMaterialDatePicker().on('beforeChange', function(e, date){
|
|
new_date = new Date(date) ;
|
|
month = parseInt(new_date.getMonth()+1)
|
|
to = new_date.getDate() + "-" + month + "-" + new_date.getFullYear();
|
|
$('#to').val(to)
|
|
search_by_date();
|
|
});
|
|
|
|
function search_by_date(){
|
|
|
|
from = $("#from").val();
|
|
to = $("#to").val();
|
|
|
|
var period = 0;
|
|
var period_type = 1;
|
|
|
|
if(to != '' && from != ''){
|
|
shift_name = from + ',' + to;
|
|
|
|
check_arr.push(to);
|
|
|
|
if(check_arr.length == 1){
|
|
show_shift_name(period,period_type,from,to,'shift_item');
|
|
}
|
|
if(check_arr.length == 3){
|
|
check_arr = [];
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
function show_shift_name(period,period_type,from,to,shift_item){
|
|
var shift = $('#shift_name');
|
|
|
|
shift.empty();
|
|
|
|
var str = '';
|
|
var param_shift = '';
|
|
var param_shift = '<%= params[:shift_name] rescue '-'%>';
|
|
if (from == '' && to == '') {
|
|
from = $("#from").val();
|
|
to = $("#to").val();
|
|
}
|
|
url = '<%= reports_get_shift_by_date_path %>';
|
|
|
|
$.get(url, {period :period, period_type :period_type, from :from, to :to, report_type :shift_item} , function(data){
|
|
|
|
str = '<option value="0">--- All Shift ---</option>';
|
|
$(data.message).each(function(index){
|
|
|
|
var local_date = data.message[index].local_opening_date + ' - ' + data.message[index].local_closing_date;
|
|
var sh_date = data.message[index].opening_date + ' - ' + data.message[index].closing_date;
|
|
var shift_id = data.message[index].shift_id ;
|
|
if(param_shift != ''){
|
|
if(shift_id == param_shift){
|
|
selected = 'selected = "selected"';
|
|
}
|
|
else{
|
|
selected = '';
|
|
}
|
|
}else{
|
|
selected = '';
|
|
}
|
|
str += '<option value="'+ shift_id +'" '+ selected +'>' + local_date + '</option>';
|
|
|
|
// console.log(sh_date)
|
|
})
|
|
shift.append(str);
|
|
});
|
|
}
|
|
|
|
});
|
|
</script>
|