| 16911 |
manas |
1 |
<div class="appTransactions index">
|
|
|
2 |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
|
|
|
3 |
<h2><?php echo __('App Transactions For Retailer Id '.$retailerId); ?></h2>
|
|
|
4 |
<table cellpadding="0" cellspacing="0" class="table table-striped">
|
|
|
5 |
<tr>
|
|
|
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('clicks'); ?></th>
|
|
|
9 |
<th><?php echo $this->Paginator->sort('approved'); ?></th>
|
|
|
10 |
<th><?php echo $this->Paginator->sort('conversion_percentage'); ?></th>
|
|
|
11 |
|
|
|
12 |
</tr>
|
|
|
13 |
|
|
|
14 |
<?php foreach ($appTransactions as $appTransaction): ?>
|
|
|
15 |
<tr>
|
|
|
16 |
<td><?php echo h($appTransaction['AppTransaction']['app_id']); ?> </td>
|
|
|
17 |
<td><?php echo h($appTransaction['AppTransaction']['app_name']); ?> </td>
|
|
|
18 |
<td><?php echo h($appTransaction[0]['count']); ?> </td>
|
|
|
19 |
<td><?php if(!isset($appTransaction['AppTransaction']['approved'])){echo h('0');}else{echo h($appTransaction['AppTransaction']['approved']);}; ?> </td>
|
|
|
20 |
<td><?php if(!isset($appTransaction['AppTransaction']['conversion_percentage'])){echo h('0');}else{echo h($appTransaction['AppTransaction']['conversion_percentage']);}; ?> </td>
|
|
|
21 |
<?php endforeach; ?>
|
|
|
22 |
</table>
|
|
|
23 |
</div>
|