| From Date : <%= params[:from] rescue '-' %> , To Date : <%= params[:to] rescue '-'%> | |||||||
|---|---|---|---|---|---|---|---|
| Shift Name = <%= @shift_from rescue '-'%> - <%= @shift_to rescue '-'%> ( <%= cashier_name rescue '-'%> ) | |||||||
| Recipt No | Cashier Name | Total Amount | Discount Amount | Tax Amount | Grand Total | Rounding Adj. | Grand Total + Rounding Adj. |
| <%= result.receipt_no rescue '-' %> | <%= result.cashier_name rescue '-' %> | <%= result.total_amount rescue '-' %> | <%= result.total_discount rescue '-' %> | <%= sprintf "%.2f",result.total_tax rescue '-' %> | <%= result.grand_total %> | <%= result.rounding_adjustment.to_f rescue '-' %> | <%= result.grand_total_after_rounding() rescue '-'%> |
| <%= total_sum rescue '-'%> | <%= discount_amt rescue '-'%> | <%= sprintf "%.2f",total_tax rescue '-'%> | <%= grand_total.to_f.round(2) rescue '-'%> | <%= rounding_adj rescue '-'%> | <%= grand_total.to_f.round + rounding_adj %> | ||
| Total Amount | Discount Amount | Tax Amount | Grand Total | Rounding Adj. | Grand Total + Rounding Adj. |
||