Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16773 manas 1
<div class="appTransactions form">
2
<?php echo $this->Form->create('AppTransaction'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Add App Transaction'); ?></legend>
5
	<?php
6
		echo $this->Form->input('retailer_id');
7
		echo $this->Form->input('app_id');
8
		echo $this->Form->input('app_name');
9
		echo $this->Form->input('cashback_status');
10
		echo $this->Form->input('redirect_url');
11
		echo $this->Form->input('cash_back_description');
12
		echo $this->Form->input('payout_status');
13
		echo $this->Form->input('overridenCashBack');
14
		echo $this->Form->input('isCashBackOverriden');
15
		echo $this->Form->input('transaction_time');
16
		echo $this->Form->input('payout_time');
17
		echo $this->Form->input('offer_price');
18
		echo $this->Form->input('payout_amount');
19
		echo $this->Form->input('user_payout');
20
		echo $this->Form->input('payout_description');
21
	?>
22
	</fieldset>
23
<?php echo $this->Form->end(__('Submit')); ?>
24
</div>
25
<div class="actions">
26
	<h3><?php echo __('Actions'); ?></h3>
27
	<ul>
28
 
29
		<li><?php echo $this->Html->link(__('List App Transactions'), array('action' => 'index')); ?></li>
30
	</ul>
31
</div>