Subversion Repositories SmartDukaan

Rev

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

Rev 7082 Rev 7096
Line 7... Line 7...
7
<body>
7
<body>
8
	
8
	
9
	
9
	
10
	
10
	
11
	<br/>
11
	<br/>
12
	<h3>Recharge Orders</h3>
12
	<h3>Recharge Orders
-
 
13
		<a style="float:right;" href='/rch/home'>Home</a>
-
 
14
	</h3>
13
	<table border="1" width="100%">
15
	<table border="1" width="100%">
14
        <thead>
16
        <thead>
15
          <tr>
17
          <tr>
16
            <th width="5%">Order ID</th>
18
            <th width="5%">Order ID</th>
17
			<th width="16%">Order Date</th>
19
			<th width="16%">Order Date</th>
Line 21... Line 23...
21
			<th width="30%">Description</th>
23
			<th width="30%">Description</th>
22
			<th width="4%">Amount</th>
24
			<th width="4%">Amount</th>
23
          </tr>
25
          </tr>
24
        </thead>
26
        </thead>
25
        <tbody>
27
        <tbody>
26
		#foreach ( $txn in $txns )
28
		#foreach ( $order in $txns )
27
		  <tr>
29
		  <tr>
28
            <td>$order.getId()</td>
30
            <td>$order.getId()</td>
29
			<td>$action.getDateTime($order.getCreationTimestamp())</td>
31
			<td>$action.getDateTime($order.getTransactionTime())</td>
30
			<td>$order.getOperatorId()</td>
32
			<td>$action.getOperatorName($order.getOperatorId())</td>
31
			<td>$order.getDeviceNum()</td>
33
			<td>$order.getDeviceNum()</td>
32
			<td>$order.getStatus()</td>
34
			<td>$order.getStatus()</td>
33
			<td>$order.getDescription()</td>
35
			<td>$order.getDescription()</td>
34
			<td>$order.getAmount()</td>
36
			<td>$order.getAmount()</td>
35
          </tr>
37
          </tr>