Subversion Repositories SmartDukaan

Rev

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 >In Store Order Statistics</h2>
        <div>
                <br/>
                <h3>Last 50 Orders</h3>
                <table border="1" width="100%">
            <thead>
              <tr>
                <th width="8%">Order ID</th>
                                <th width="18%">Date/Time</th>
                <th width="12%">Brand</th>
                <th width="20%">Model Number</th>
                <th width="8%">Type</th>
                <th width="16%">Status</th>
                                <th width="10%">Store</th>
                <th width="8%">Customer City</th>
              </tr>
            </thead>
            <tbody>
                        #foreach($order in $action.getValidOrders())
                        #set($item = $action.getItem($order))
              <tr>
                <td>$order.getId()</td>
                                <td>$action.getDateTime($order.getCreated_timestamp())</td>
                <td>$item.getBrand()</td>
                <td>$item.getModel_number()</td>
                                #if($order.isCod())
                                <td>COD</td>
                                #else
                                <td>Prepaid</td>
                                #end
                                <td>$action.getOrderStatusString($order.getStatus())</td>
                <td>$action.getStoreName($order.getPickupStoreId())</td>
                                <td>$order.getCustomer_city()</td>
              </tr>
                        #end
            </tbody>
                </table>
 
    </div>
</body>
</html>