Merge branch 'r-1902001-01-dev' into r-1902001-01
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
<table class="table table-striped" border="0">
|
<table class="table table-striped" border="0">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<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 ? @to.utc.getlocal.strftime("%Y-%b-%d") : '-'%></th>
|
<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>
|
</tr>
|
||||||
<% if @shift_from %>
|
<% if @shift_from %>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -22,7 +22,6 @@
|
|||||||
<th colspan="9"><%= t("views.right_panel.detail.shift_name") %> = <%= @shift_from %> - <%= @shift_to %> ( <%= cashier_name %> )</th>
|
<th colspan="9"><%= t("views.right_panel.detail.shift_name") %> = <%= @shift_from %> - <%= @shift_to %> ( <%= cashier_name %> )</th>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th><%= t("views.right_panel.detail.dining") %></th>
|
<th><%= t("views.right_panel.detail.dining") %></th>
|
||||||
<th><%= t("views.right_panel.detail.receipt_no") %></th>
|
<th><%= t("views.right_panel.detail.receipt_no") %></th>
|
||||||
@@ -41,8 +40,21 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
<% if @print_settings.precision.to_i > 0
|
||||||
|
precision = @print_settings.precision
|
||||||
|
else
|
||||||
|
precision = 0
|
||||||
|
end
|
||||||
|
#check delimiter
|
||||||
|
if @print_settings.delimiter
|
||||||
|
delimiter = ","
|
||||||
|
else
|
||||||
|
delimiter = ""
|
||||||
|
end %>
|
||||||
|
|
||||||
<% grand_total = 0 %>
|
<% grand_total = 0 %>
|
||||||
<% old_grand_total = 0 %>
|
<% old_grand_total = 0 %>
|
||||||
|
<% after_rounding = 0 %>
|
||||||
<% total_tax = 0 %>
|
<% total_tax = 0 %>
|
||||||
<% guest_count = 0 %>
|
<% guest_count = 0 %>
|
||||||
<% total_sum = 0 %>
|
<% total_sum = 0 %>
|
||||||
@@ -62,11 +74,11 @@
|
|||||||
end
|
end
|
||||||
%>
|
%>
|
||||||
|
|
||||||
<%if @sale_data %>
|
<%if !@sale_data.nil? %>
|
||||||
<% @sale_data.each do |result| %>
|
<% @sale_data.each do |result| %>
|
||||||
|
|
||||||
<% grand_total = grand_total.to_f + result.grand_total.to_f %>
|
<% grand_total +=result.grand_total.to_f %>
|
||||||
<% old_grand_total = old_grand_total.to_f + result.old_grand_total.to_f %>
|
<% old_grand_total += result.grand_total_after_rounding() %>
|
||||||
<% total_tax += result.total_tax.to_f %>
|
<% total_tax += result.total_tax.to_f %>
|
||||||
<% total_sum += result.total_amount.to_f %>
|
<% total_sum += result.total_amount.to_f %>
|
||||||
<% discount_amt += result.total_discount.to_f %>
|
<% discount_amt += result.total_discount.to_f %>
|
||||||
@@ -79,6 +91,7 @@
|
|||||||
tax_flag = false
|
tax_flag = false
|
||||||
end
|
end
|
||||||
end %>
|
end %>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<%if result.type %>
|
<%if result.type %>
|
||||||
@@ -89,78 +102,88 @@
|
|||||||
</td>
|
</td>
|
||||||
<td><%= result.receipt_no rescue '-' %> </td>
|
<td><%= result.receipt_no rescue '-' %> </td>
|
||||||
<td><%= result.cashier_name rescue '-' %></td>
|
<td><%= result.cashier_name rescue '-' %></td>
|
||||||
<td><%= result.total_amount rescue '-' %></td>
|
<td><%= number_with_precision(result.total_amount, precision: precision.to_i ,delimiter: delimiter) %></td>
|
||||||
<td><%= result.total_discount rescue '-' %></td>
|
<td><%= number_with_precision(result.total_discount, precision: precision.to_i ,delimiter: delimiter) rescue '0' %>
|
||||||
<!-- <%if result.customer.customer_type == "Takeaway"%>
|
</td>
|
||||||
<td>0.0</td>
|
|
||||||
<%end%> -->
|
|
||||||
<% if !result.sale_taxes.empty? %>
|
<% if !result.sale_taxes.empty? %>
|
||||||
<% num = 1
|
<% num = 1
|
||||||
if tax_flag && tax_count > 0 %>
|
if tax_flag && tax_count > 0 %>
|
||||||
<% while num <= tax_count %>
|
<% while num <= tax_count %>
|
||||||
<td>0</td>
|
<td>
|
||||||
|
<%= number_with_precision(0, precision: precision.to_i ,delimiter: delimiter) %>
|
||||||
|
</td>
|
||||||
<% num += 1
|
<% num += 1
|
||||||
end %>
|
end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% result.sale_taxes.each do |tax| %>
|
<% result.sale_taxes.each do |tax| %>
|
||||||
<td>
|
<td>
|
||||||
<%= tax.tax_payable_amount rescue '-' %>
|
<%= number_with_precision(tax.tax_payable_amount, precision: precision.to_i ,delimiter: delimiter) rescue '-' %>
|
||||||
</td>
|
</td>
|
||||||
<%end%>
|
<%end%>
|
||||||
<% num = 1
|
<% num = 1
|
||||||
if tax_flag==false && tax_count > 0 %>
|
if tax_flag==false && tax_count > 0 %>
|
||||||
<% while num <= tax_count %>
|
<% while num <= tax_count %>
|
||||||
<td>0</td>
|
<td>
|
||||||
|
<%= number_with_precision(0, precision: precision.to_i ,delimiter: delimiter) %>
|
||||||
|
</td>
|
||||||
<% num += 1
|
<% num += 1
|
||||||
end %>
|
end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<% @tax_profiles.each do |tax| %>
|
<% @tax_profiles.each do |tax| %>
|
||||||
<td>0</td>
|
<td><%= number_with_precision(0, precision: precision.to_i ,delimiter: delimiter) rescue '-' %></td>
|
||||||
<% end %>
|
<% end %>
|
||||||
<%end%>
|
<%end%>
|
||||||
|
|
||||||
<td><%= result.grand_total %></td>
|
<% if result.old_grand_total.nil? %>
|
||||||
|
<td><%= number_with_precision(result.grand_total, precision: precision.to_i ,delimiter: delimiter) rescue '-' %></td>
|
||||||
|
<%else%>
|
||||||
|
<td><%= number_with_precision(result.old_grand_total, precision: precision.to_i ,delimiter: delimiter) rescue '-' %></td>
|
||||||
|
<%end%>
|
||||||
|
|
||||||
<td><%= result.rounding_adjustment.to_f rescue '-' %></td>
|
<td><%= result.rounding_adjustment.to_f rescue '-' %></td>
|
||||||
<td><%= result.grand_total_after_rounding() rescue '-'%></td>
|
<td><%= number_with_precision(result.grand_total, precision: precision.to_i ,delimiter: delimiter) %></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<% end %>
|
<% end %>
|
||||||
<tr style="border-top:4px double #666;">
|
<tr style="border-top:4px double #666;">
|
||||||
<td colspan="3"> </td>
|
<td colspan="3"> </td>
|
||||||
<td><b><%= total_sum rescue '-'%></b></td>
|
<td><b><%= number_with_precision(total_sum, precision: precision.to_i ,delimiter: delimiter) rescue '-' %></b></td>
|
||||||
<td><b><%= discount_amt rescue '-'%></b></td>
|
<td><b><%= number_with_precision(discount_amt, precision: precision.to_i ,delimiter: delimiter) rescue '-' %></b></td>
|
||||||
<!-- <% @sale_taxes.each do |tax| %>
|
|
||||||
<td><b><%= tax.st_amount.round(2) %></b></td>
|
|
||||||
<% end %> -->
|
|
||||||
<% if !@sale_taxes.empty? %>
|
<% if !@sale_taxes.empty? %>
|
||||||
<% num = 1
|
<% num = 1
|
||||||
if ttax_flag && ttax_count > 0 %>
|
if ttax_flag && ttax_count > 0 %>
|
||||||
<% while num <= ttax_count %>
|
<% while num <= ttax_count %>
|
||||||
<td>0.00</td>
|
<td>
|
||||||
|
<%= number_with_precision(0, precision: precision.to_i ,delimiter: delimiter) %>
|
||||||
|
</td>
|
||||||
<% num += 1
|
<% num += 1
|
||||||
end %>
|
end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% @sale_taxes.each do |tax| %>
|
<% @sale_taxes.each do |tax| %>
|
||||||
<td>
|
<td>
|
||||||
<%= tax.st_amount.to_f.round(2) %>
|
<%= number_with_precision(tax.st_amount, precision: precision.to_i ,delimiter: delimiter) rescue '-' %>
|
||||||
</td>
|
</td>
|
||||||
<%end%>
|
<%end%>
|
||||||
<% num = 1
|
<% num = 1
|
||||||
if ttax_flag==false && ttax_count > 0 %>
|
if ttax_flag==false && ttax_count > 0 %>
|
||||||
<% while num <= ttax_count %>
|
<% while num <= ttax_count %>
|
||||||
<td>0.00</td>
|
<td>
|
||||||
|
<%= number_with_precision(0, precision: precision.to_i ,delimiter: delimiter) %>
|
||||||
|
</td>
|
||||||
<% num += 1
|
<% num += 1
|
||||||
end %>
|
end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<% @tax_profiles.each do |tax| %>
|
<% @tax_profiles.each do |tax| %>
|
||||||
<td>0.00</td>
|
<td><%= number_with_precision(0, precision: precision.to_i ,delimiter: delimiter) rescue '-' %></td>
|
||||||
<% end %>
|
<% end %>
|
||||||
<%end%>
|
<%end%>
|
||||||
<td><b><%= grand_total.to_f.round(2) rescue '-'%></b></td>
|
|
||||||
<td><b><%= rounding_adj rescue '-'%></b></td>
|
<td><b><%= number_with_precision(old_grand_total.to_f, precision: precision.to_i ,delimiter: delimiter) rescue '0' %></b></td>
|
||||||
<td><b><%= grand_total.to_f.round + rounding_adj %></b></td>
|
|
||||||
|
<td><b><%= rounding_adj.to_f rescue '-' %></b></td>
|
||||||
|
<td><b><%= number_with_precision(grand_total.to_f, precision: precision.to_i ,delimiter: delimiter) rescue '-' %></b></td>
|
||||||
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3"> </td>
|
<td colspan="3"> </td>
|
||||||
@@ -175,6 +198,8 @@
|
|||||||
<td><%= t("views.right_panel.detail.grand_total") %> +<br/>
|
<td><%= t("views.right_panel.detail.grand_total") %> +<br/>
|
||||||
<%= t("views.right_panel.detail.rnd_adj_sh") %>
|
<%= t("views.right_panel.detail.rnd_adj_sh") %>
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<%end%>
|
<%end%>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
Reference in New Issue
Block a user