Subversion Repositories SmartDukaan

Rev

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

Rev 6198 Rev 6243
Line 61... Line 61...
61
	<h3>Lastest $type Orders</h3>
61
	<h3>Lastest $type Orders</h3>
62
	<table border="1" width="100%">
62
	<table border="1" width="100%">
63
        <thead>
63
        <thead>
64
          <tr>
64
          <tr>
65
            <th width="5%">Order ID</th>
65
            <th width="5%">Order ID</th>
66
			<th width="20%">Order Date</th>
66
			<th width="16%">Order Date</th>
67
			<th width="10%">Operator</th>
67
			<th width="10%">Operator</th>
68
            <th width="10%">Device</th>
68
            <th width="10%">Device</th>
69
			<th width="15%">Status</th>
69
			<th width="15%">Status</th>
70
			<th width="30%">Description</th>
70
			<th width="30%">Description</th>
71
			<th width="10%">Amount</th>
71
			<th width="7%">Amount</th>
-
 
72
			<th width="7%">Plan</th>
72
          </tr>
73
          </tr>
73
        </thead>
74
        </thead>
74
        <tbody>
75
        <tbody>
75
		#foreach($order in $orders)
76
		#foreach($order in $orders)
76
		  <tr>
77
		  <tr>
Line 79... Line 80...
79
			<td>$action.getOperator($order.getOperatorId())</td>
80
			<td>$action.getOperator($order.getOperatorId())</td>
80
			<td>$order.getDeviceNumber()</td>
81
			<td>$order.getDeviceNumber()</td>
81
			<td>$order.getStatus()</td>
82
			<td>$order.getStatus()</td>
82
			<td>#if($order.getDescription())$order.getDescription()#end</td>
83
			<td>#if($order.getDescription())$order.getDescription()#end</td>
83
			<td>$order.getTotalAmount()</td>
84
			<td>$order.getTotalAmount()</td>
-
 
85
			<td>#if($order.getPlan())$order.getPlan()#end</td>
84
          </tr>
86
          </tr>
85
		#end
87
		#end
86
        </tbody>
88
        </tbody>
87
	</table>
89
	</table>
88
	#end
90
	#end