| 16773 |
manas |
1 |
<div class="appTransactions index">
|
|
|
2 |
<h2><?php echo __('App Transactions'); ?></h2>
|
|
|
3 |
<table cellpadding="0" cellspacing="0" class="table table-striped">
|
|
|
4 |
<tr>
|
|
|
5 |
<th><?php echo $this->Paginator->sort('retailer_id'); ?></th>
|
|
|
6 |
<th><?php echo $this->Paginator->sort('app_id'); ?></th>
|
|
|
7 |
<th><?php echo $this->Paginator->sort('app_name'); ?></th>
|
|
|
8 |
<th><?php echo $this->Paginator->sort('cash_back_description'); ?></th>
|
|
|
9 |
<th><?php echo $this->Paginator->sort('payout_status'); ?></th>
|
|
|
10 |
<th><?php echo $this->Paginator->sort('transaction_time'); ?></th>
|
|
|
11 |
<th><?php echo $this->Paginator->sort('payout_time'); ?></th>
|
|
|
12 |
<th><?php echo $this->Paginator->sort('offer_price'); ?></th>
|
|
|
13 |
<th><?php echo $this->Paginator->sort('payout_amount'); ?></th>
|
|
|
14 |
<th><?php echo $this->Paginator->sort('user_payout'); ?></th>
|
| 16924 |
manas |
15 |
<th><?php echo $this->Paginator->sort('payout_description'); ?></th>
|
| 16773 |
manas |
16 |
|
|
|
17 |
</tr>
|
|
|
18 |
<?php foreach ($appTransactions as $appTransaction): ?>
|
|
|
19 |
<tr>
|
|
|
20 |
<td><?php echo h($appTransaction['AppTransaction']['retailer_id']); ?> </td>
|
|
|
21 |
<td><?php echo h($appTransaction['AppTransaction']['app_id']); ?> </td>
|
|
|
22 |
<td><?php echo h($appTransaction['AppTransaction']['app_name']); ?> </td>
|
|
|
23 |
<td><?php echo h($appTransaction['AppTransaction']['cash_back_description']); ?> </td>
|
|
|
24 |
<td><?php echo h($appTransaction['AppTransaction']['payout_status']); ?> </td>
|
|
|
25 |
<td><?php echo h($appTransaction['AppTransaction']['transaction_time']); ?> </td>
|
|
|
26 |
<td><?php echo h($appTransaction['AppTransaction']['payout_time']); ?> </td>
|
|
|
27 |
<td><?php echo h($appTransaction['AppTransaction']['offer_price']); ?> </td>
|
|
|
28 |
<td><?php echo h($appTransaction['AppTransaction']['payout_amount']); ?> </td>
|
| 16923 |
manas |
29 |
<td><?php echo h($appTransaction['AppTransaction']['final_user_payout']); ?> </td>
|
| 16924 |
manas |
30 |
<td><?php echo h($appTransaction['AppTransaction']['payout_description']); ?> </td>
|
| 16773 |
manas |
31 |
|
|
|
32 |
</tr>
|
|
|
33 |
<?php endforeach; ?>
|
|
|
34 |
</table>
|
|
|
35 |
<p>
|
|
|
36 |
<?php
|
|
|
37 |
echo $this->Paginator->counter(array(
|
|
|
38 |
'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
|
|
|
39 |
));
|
|
|
40 |
?> </p>
|
|
|
41 |
<div class="paging">
|
|
|
42 |
<?php
|
|
|
43 |
echo $this->Paginator->prev('< ' . __('previous '), array(), null, array('class' => 'prev disabled'));
|
|
|
44 |
echo $this->Paginator->numbers(array('separator' => ' '));
|
|
|
45 |
echo $this->Paginator->next(__(' next') . ' >', array(), null, array('class' => 'next disabled'));
|
|
|
46 |
?>
|
|
|
47 |
</div>
|
|
|
48 |
</div>
|