ENCASHMENT #$mc.id of the TERMINAL #$point.id
----------------------------------
Agent: $dealer.name TIN:$dealer.inn
Point: $point.address
----------------------------------
Current encashment date:$dateFormat.format($mc.date)
#if ($mc.lastDate)
Last encashment date:$dateFormat.format($mc.lastDate)
#end
----------------------------------
Denomination| Q-ty |   Amount
#foreach($bn in $units)
#if ($mc.keeper.cashUnits.get($bn))
$string.format("%12s",$bn.getNominal()) $string.format("%6s",$mc.keeper.cashUnits.get($bn)) $string.format("%15s",$bn.nominal.mul($mc.keeper.cashUnits.get($bn)))
#else
$string.format("%12s",$bn.getNominal()) $string.format("%6s","0") $string.format("%15s","0")
#end
#end
----------------------------------
Total banknotes: $total
Total amount: $mc.keeper.getSum()