View Categories

Calculate cash balance in the drawer

< 1 min read

This template prints the cash balance in the drawer

Maintenance > Resources
Use this script in Printer.CloseCash or Printer.PartialCash or Printer.CloseCashMail.

#set ( $drawercash = 0.00 )
#foreach ($line in $payments.getPaymentLines())
  #if ($line.getType().substring(0,4).equals("cash"))
    #set( $drawercash = $drawercash + $line.getValue() )
  #end
#end
<line>
  <text align="left" length="28" bold="true">Total Cash In Drawer</text>
  <text align="right" length="20" bold="true">$payments.formatCurrency($drawercash)</text>
</line>

Save & restart

0 Comments

Leave a Reply

Arrow-up