| 16773 |
manas |
1 |
<div class="appTransactions view">
|
|
|
2 |
<h2><?php echo __('App Transaction'); ?></h2>
|
|
|
3 |
<dl>
|
|
|
4 |
<dt><?php echo __('Id'); ?></dt>
|
|
|
5 |
<dd>
|
|
|
6 |
<?php echo h($appTransaction['AppTransaction']['id']); ?>
|
|
|
7 |
|
|
|
8 |
</dd>
|
|
|
9 |
<dt><?php echo __('Retailer Id'); ?></dt>
|
|
|
10 |
<dd>
|
|
|
11 |
<?php echo h($appTransaction['AppTransaction']['retailer_id']); ?>
|
|
|
12 |
|
|
|
13 |
</dd>
|
|
|
14 |
<dt><?php echo __('App Id'); ?></dt>
|
|
|
15 |
<dd>
|
|
|
16 |
<?php echo h($appTransaction['AppTransaction']['app_id']); ?>
|
|
|
17 |
|
|
|
18 |
</dd>
|
|
|
19 |
<dt><?php echo __('App Name'); ?></dt>
|
|
|
20 |
<dd>
|
|
|
21 |
<?php echo h($appTransaction['AppTransaction']['app_name']); ?>
|
|
|
22 |
|
|
|
23 |
</dd>
|
|
|
24 |
<dt><?php echo __('Cashback Status'); ?></dt>
|
|
|
25 |
<dd>
|
|
|
26 |
<?php echo h($appTransaction['AppTransaction']['cashback_status']); ?>
|
|
|
27 |
|
|
|
28 |
</dd>
|
|
|
29 |
<dt><?php echo __('Redirect Url'); ?></dt>
|
|
|
30 |
<dd>
|
|
|
31 |
<?php echo h($appTransaction['AppTransaction']['redirect_url']); ?>
|
|
|
32 |
|
|
|
33 |
</dd>
|
|
|
34 |
<dt><?php echo __('Cash Back Description'); ?></dt>
|
|
|
35 |
<dd>
|
|
|
36 |
<?php echo h($appTransaction['AppTransaction']['cash_back_description']); ?>
|
|
|
37 |
|
|
|
38 |
</dd>
|
|
|
39 |
<dt><?php echo __('Payout Status'); ?></dt>
|
|
|
40 |
<dd>
|
|
|
41 |
<?php echo h($appTransaction['AppTransaction']['payout_status']); ?>
|
|
|
42 |
|
|
|
43 |
</dd>
|
|
|
44 |
<dt><?php echo __('OverridenCashBack'); ?></dt>
|
|
|
45 |
<dd>
|
|
|
46 |
<?php echo h($appTransaction['AppTransaction']['overridenCashBack']); ?>
|
|
|
47 |
|
|
|
48 |
</dd>
|
|
|
49 |
<dt><?php echo __('IsCashBackOverriden'); ?></dt>
|
|
|
50 |
<dd>
|
|
|
51 |
<?php echo h($appTransaction['AppTransaction']['isCashBackOverriden']); ?>
|
|
|
52 |
|
|
|
53 |
</dd>
|
|
|
54 |
<dt><?php echo __('Transaction Time'); ?></dt>
|
|
|
55 |
<dd>
|
|
|
56 |
<?php echo h($appTransaction['AppTransaction']['transaction_time']); ?>
|
|
|
57 |
|
|
|
58 |
</dd>
|
|
|
59 |
<dt><?php echo __('Payout Time'); ?></dt>
|
|
|
60 |
<dd>
|
|
|
61 |
<?php echo h($appTransaction['AppTransaction']['payout_time']); ?>
|
|
|
62 |
|
|
|
63 |
</dd>
|
|
|
64 |
<dt><?php echo __('Offer Price'); ?></dt>
|
|
|
65 |
<dd>
|
|
|
66 |
<?php echo h($appTransaction['AppTransaction']['offer_price']); ?>
|
|
|
67 |
|
|
|
68 |
</dd>
|
|
|
69 |
<dt><?php echo __('Payout Amount'); ?></dt>
|
|
|
70 |
<dd>
|
|
|
71 |
<?php echo h($appTransaction['AppTransaction']['payout_amount']); ?>
|
|
|
72 |
|
|
|
73 |
</dd>
|
|
|
74 |
<dt><?php echo __('User Payout'); ?></dt>
|
|
|
75 |
<dd>
|
|
|
76 |
<?php echo h($appTransaction['AppTransaction']['user_payout']); ?>
|
|
|
77 |
|
|
|
78 |
</dd>
|
|
|
79 |
<dt><?php echo __('Payout Description'); ?></dt>
|
|
|
80 |
<dd>
|
|
|
81 |
<?php echo h($appTransaction['AppTransaction']['payout_description']); ?>
|
|
|
82 |
|
|
|
83 |
</dd>
|
|
|
84 |
</dl>
|
|
|
85 |
</div>
|
|
|
86 |
<div class="actions">
|
|
|
87 |
<h3><?php echo __('Actions'); ?></h3>
|
|
|
88 |
<ul>
|
|
|
89 |
<li><?php echo $this->Html->link(__('Edit App Transaction'), array('action' => 'edit', $appTransaction['AppTransaction']['id'])); ?> </li>
|
|
|
90 |
<li><?php echo $this->Form->postLink(__('Delete App Transaction'), array('action' => 'delete', $appTransaction['AppTransaction']['id']), null, __('Are you sure you want to delete # %s?', $appTransaction['AppTransaction']['id'])); ?> </li>
|
|
|
91 |
<li><?php echo $this->Html->link(__('List App Transactions'), array('action' => 'index')); ?> </li>
|
|
|
92 |
<li><?php echo $this->Html->link(__('New App Transaction'), array('action' => 'add')); ?> </li>
|
|
|
93 |
</ul>
|
|
|
94 |
</div>
|