Rev 6154 | Rev 6195 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<html ><head><title>Statistics</title></head><body>#parse("../content/reports-common.vm")<h2 >Recharge Orders</h2><div><br/><h3>All Orders</h3><table border="1" width="100%"><thead><tr><th width="5%">Order ID</th><th width="20%">Order Date</th><th width="10%">Operator</th><th width="10%">Device</th><th width="15%">Status</th><th width="30%">Description</th><th width="10%">Amount</th></tr></thead><tbody>#foreach($order in $action.getValidOrders())<tr><td>$order.getDisplayId()</td><td>$action.getDateTime($order.getCreationTimestamp())</td><td>$action.getOperator($order.getOperatorId())</td><td>$order.getDeviceNumber()</td><td>$order.getStatus()</td><td>#if($order.getDescription())$order.getDescription()#end</td><td>$order.getTotalAmount()</td></tr>#end</tbody></table></div></body></html>