Subversion Repositories SmartDukaan

Rev

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

Rev 6135 Rev 6148
Line 107... Line 107...
107
                                <div class="note">Recharge detail and status information.</div>
107
                                <div class="note">Recharge detail and status information.</div>
108
                                <table cellpadding="0" cellspacing="0" border="0" width="100%" id="rechargeData" class="tablesorter">
108
                                <table cellpadding="0" cellspacing="0" border="0" width="100%" id="rechargeData" class="tablesorter">
109
                                <thead>
109
                                <thead>
110
                                    <tr>
110
                                    <tr>
111
                                        <th width="19%">Date</th>
111
                                        <th width="19%">Date</th>
112
										<th width="15%">Wallet Amount</th>
112
										<th width="18%">Order Id</th>
113
                                        <th width="15%">Number</th>
113
                                        <th width="15%">Number</th>
114
                                        <th width="18%">Operator</th>
114
                                        <th width="17%">Operator</th>
115
										<th width="12%">Value</th>
115
										<th width="11%">Value</th>
116
                                        <th width="21%" class="borderRight">Status</th>
116
                                        <th width="20%" class="borderRight">Status</th>
117
                                    </tr>
117
                                    </tr>
118
                                </thead>
118
                                </thead>
119
                                <tbody>
119
                                <tbody>
120
									    #foreach($recharge in $recharges)
120
									    #foreach($recharge in $recharges)
121
                                    <tr>
121
                                    <tr>
122
                                        <td>$action.formatDate($recharge.getCreationTimestamp())</td>
122
                                        <td>$action.formatDate($recharge.getCreationTimestamp())</td>
123
										<td>$recharge.getWalletAmount()</td>
123
										<td>$recharge.getDisplayId()</td>
124
                                        <td>$recharge.getDeviceNumber()</td>
124
                                        <td>$recharge.getDeviceNumber()</td>
125
                                        <td>$action.getProviderName($recharge.getId())</td>
125
                                        <td>$action.getProviderName($recharge.getId())</td>
126
                                        <td>$recharge.getTotalAmount()</td>
126
                                        <td>$recharge.getTotalAmount()</td>
127
										<td>$recharge.getStatus()</td>
127
										<td>$recharge.getStatus()</td>
128
                                    </tr>
128
                                    </tr>