Subversion Repositories SmartDukaan

Rev

Rev 9166 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9166 Rev 9174
Line 91... Line 91...
91
                <th>Description</th>
91
                <th>Description</th>
92
                <th>Created</th>
92
                <th>Created</th>
93
                <th>Amount</th>
93
                <th>Amount</th>
94
                <th>Status</th>
94
                <th>Status</th>
95
                <th>Device No</th>
95
                <th>Device No</th>
-
 
96
				<th>User Email-Id</th>
96
            </tr>
97
            </tr>
97
        </thead>
98
        </thead>
98
        <tbody>
99
        <tbody>
99
            #foreach($rechargeOrder in $action.getRechargeOrders())
100
            #foreach($rechargeOrder in $action.getRechargeOrders())
100
            <tr id="order-row-$rechargeOrder.getId()">
101
            <tr id="order-row-$rechargeOrder.getId()">
Line 111... Line 112...
111
                <td class="truncated-text" truncatedTextWidth="230">$rechargeOrder.getDescription()</td>
112
                <td class="truncated-text" truncatedTextWidth="230">$rechargeOrder.getDescription()</td>
112
                <td>$action.convertDate($rechargeOrder.getCreationTimestamp())</td>
113
                <td>$action.convertDate($rechargeOrder.getCreationTimestamp())</td>
113
                <td>$rechargeOrder.getTotalAmount()</td>
114
                <td>$rechargeOrder.getTotalAmount()</td>
114
                <td class="truncated-text" truncatedTextWidth="140">$rechargeOrder.getStatus().toString()</td>
115
                <td class="truncated-text" truncatedTextWidth="140">$rechargeOrder.getStatus().toString()</td>
115
                <td>$rechargeOrder.getDeviceNumber()</td>
116
                <td>$rechargeOrder.getDeviceNumber()</td>
-
 
117
				<td>$rechargeOrder.getUserEmailId()</td>
116
            </tr>
118
            </tr>
117
            #end
119
            #end
118
            </tbody>
120
            </tbody>
119
    </table>
121
    </table>
120
</div>
122
</div>