Subversion Repositories SmartDukaan

Rev

Rev 1941 | Rev 3279 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1941 Rev 3071
Line 49... Line 49...
49
              <tr>
49
              <tr>
50
                <th width="8%">Order ID</th>
50
                <th width="8%">Order ID</th>
51
				<th width="18%">Date/Time</th>
51
				<th width="18%">Date/Time</th>
52
                <th width="12%">Brand</th>
52
                <th width="12%">Brand</th>
53
                <th width="20%">Model Number</th>
53
                <th width="20%">Model Number</th>
54
                <th width="8%">Qty</th>
54
                <th width="8%">Type</th>
55
                <th width="16%">Status</th>
55
                <th width="16%">Status</th>
56
				<th width="10%">Customer ID</th>
56
				<th width="10%">Customer ID</th>
57
                <th width="8%">Customer City </th>
57
                <th width="8%">Customer City </th>
58
              </tr>
58
              </tr>
59
            </thead>
59
            </thead>
60
            <tbody>
60
            <tbody>
61
					#foreach($order in $action.getValidOrders())
61
			#foreach($order in $action.getValidOrders())
62
						#set($item = $action.getItem($order))
62
			#set($item = $action.getItem($order))
63
              <tr>
63
              <tr>
64
                <td>$order.getId()</td>
64
                <td>$order.getId()</td>
65
				<td>$action.getDateTime($order.getCreated_timestamp())</td>
65
				<td>$action.getDateTime($order.getCreated_timestamp())</td>
66
                <td>$item.getBrand()</td>
66
                <td>$item.getBrand()</td>
67
                <td>$item.getModel_number()</td>
67
                <td>$item.getModel_number()</td>
-
 
68
				#if($order.isCod())
-
 
69
				<td>COD</td>
-
 
70
				#else
68
				<td>$item.getQuantity()</td>
71
				<td>Prepaid</td>
-
 
72
				#end
69
				<td>$action.getOrderStatusString($order.getStatus())
73
				<td>$action.getOrderStatusString($order.getStatus())
70
                <td>$order.getCustomer_id()</td>
74
                <td>$order.getCustomer_id()</td>
71
				<td>$order.getCustomer_city()</td>
75
				<td>$order.getCustomer_city()</td>
72
              </tr>
76
              </tr>
73
					#end
77
			#end
74
            </tbody>
78
            </tbody>
75
		</table>
79
		</table>
76
 
80
 
77
    </div>
81
    </div>
78
</body>
82
</body>