| Shift Started At | <%= @shift.shift_started_at.utc.getlocal.strftime("%d/%m/%Y - %I:%M %p") rescue '-' %> |
| Cashier Name | <%= @shift.employee.name rescue ''%> |
| Opening Balance | <%= @shift.opening_balance rescue ''%> |
| Total Revenue | <%= @shift.total_revenue rescue ''%> |
| Total Discount | <%= @shift.total_discounts rescue ''%> |
| Total Tax | <%= @shift.total_taxes rescue ''%> |
| Grand Total | <%= @shift.grand_total rescue ''%> |
| Nett Sale | <%= @shift.nett_sales rescue ''%> |
| Cash Sale | <%= @shift.cash_sales rescue ''%> |
| Credit Sale | <%= @shift.credit_sales rescue ''%> |
| Other Sale | <%= @shift.other_sales rescue ''%> |
| Commercial Tax | <%= @shift.commercial_taxes rescue ''%> |
| Cash In | <%= @shift.cash_in rescue ''%> |
| Cash Out | <%= @shift.cash_out rescue ''%> |