Subversion Repositories SmartDukaan

Rev

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

Rev 16943 Rev 16952
Line 1... Line 1...
1
<div class="appTransactions index">
1
<div class="appTransactions index">
2
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
2
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
3
	<h2><?php echo __('App Offer Price and Payout Amount'.$date); ?></h2>
3
	<h2><?php echo __('App Offer Price and Payout Amount'); ?></h2>
4
	<?php foreach ($total as $key => $value): ?>
4
	<?php foreach ($total as $key => $value): ?>
5
	<h4><?php echo __('Total Offer Price '.$value[0]['total_offer_price']);?></h4>
5
	<h4><?php echo __('Total Offer Price '.$value[0]['total_offer_price']);?></h4>
6
	<h4><?php echo __('Total Final User Payout '.$value[0]['total_payout_amount']);?></h4>	
6
	<h4><?php echo __('Total Final User Payout '.$value[0]['total_payout_amount']);?></h4>	
7
	<?php endforeach ?>
7
	<?php endforeach ?>
8
	
8
	
Line 24... Line 24...
24
		</div>
24
		</div>
25
    </form>
25
    </form>
26
 
26
 
27
	<table cellpadding="0" cellspacing="0" class="table table-striped">
27
	<table cellpadding="0" cellspacing="0" class="table table-striped">
28
	<tr>
28
	<tr>
-
 
29
			<th><?php echo('Date'); ?></th>
29
			<th><?php echo('Offer Price'); ?></th>
30
			<th><?php echo('Offer Price'); ?></th>
30
			<th><?php echo('User Final Payout Amount'); ?></th>
31
			<th><?php echo('User Final Payout Amount'); ?></th>
31
	</tr>
32
	</tr>
32
	<?php foreach ($datewiseTotal as $appTransaction): ?>
33
	<?php foreach ($datewiseTotal as $appTransaction): ?>
33
	<tr>
34
	<tr>
-
 
35
		<td><?php if(!isset($appTransaction[0]['date'])){echo h('None');}else{
-
 
36
			echo h($appTransaction[0]['date']);
-
 
37
			} ?>&nbsp;</td>
-
 
38
 
34
		<td><?php if(!isset($appTransaction[0]['offer_price'])){echo h('0');}else{
39
		<td><?php if(!isset($appTransaction[0]['offer_price'])){echo h('0');}else{
35
			echo h($appTransaction[0]['offer_price']);
40
			echo h($appTransaction[0]['offer_price']);
36
			} ?>&nbsp;</td>
41
			} ?>&nbsp;</td>
37
			<td><?php if(!isset($appTransaction[0]['payout_amount'])){echo h('0');}else{
42
			<td><?php if(!isset($appTransaction[0]['payout_amount'])){echo h('0');}else{
38
			echo h($appTransaction[0]['payout_amount']);
43
			echo h($appTransaction[0]['payout_amount']);