Subversion Repositories SmartDukaan

Rev

Rev 7096 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#set($txns=$action.getTxns())

<html >
<head>
        <title>Recharge For Store</title>
</head>
<body>
        
        
        
        <br/>
        <h3>Recharge Orders</h3>
        <table border="1" width="100%">
        <thead>
          <tr>
            <th width="5%">Order ID</th>
                        <th width="16%">Order Date</th>
                        <th width="10%">Operator</th>
            <th width="9%">Device</th>
                        <th width="15%">Status</th>
                        <th width="30%">Description</th>
                        <th width="4%">Amount</th>
          </tr>
        </thead>
        <tbody>
                #foreach ( $txn in $txns )
                  <tr>
            <td>$order.getId()</td>
                        <td>$action.getDateTime($order.getCreationTimestamp())</td>
                        <td>$order.getOperatorId()</td>
                        <td>$order.getDeviceNum()</td>
                        <td>$order.getStatus()</td>
                        <td>$order.getDescription()</td>
                        <td>$order.getAmount()</td>
          </tr>
                #end
        </tbody>
        </table>
        
    </div>
</body>
</html>