Subversion Repositories SmartDukaan

Rev

Rev 7082 | Rev 7151 | 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
                <a style="float:right;" href='/rch/home'>Home</a>
        </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 ( $order in $txns )
                  <tr>
            <td>$order.getId()</td>
                        <td>$action.getDateTime($order.getTransactionTime())</td>
                        <td>$action.getOperatorName($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>