| Line 23... |
Line 23... |
| 23 |
<?php
|
23 |
<?php
|
| 24 |
echo $this->Form->input('user_id',array('value'=>$id,'type'=>'text','readonly'=> true));
|
24 |
echo $this->Form->input('user_id',array('value'=>$id,'type'=>'text','readonly'=> true));
|
| 25 |
echo $this->Form->input('email_id',array('value'=>$email,'type'=>'text','readonly'=> true));
|
25 |
echo $this->Form->input('email_id',array('value'=>$email,'type'=>'text','readonly'=> true));
|
| 26 |
|
26 |
|
| 27 |
echo $this->Form->input('mobile',array('value'=>$phone,'readonly'=>true));
|
27 |
echo $this->Form->input('mobile',array('value'=>$phone,'readonly'=>true));
|
| 28 |
echo $this->Form->input('amount',array('type'=>'number','required'=>1, 'min'=>"0",'max'=>"1000"));
|
28 |
echo $this->Form->input('amount',array('type'=>'number','required'=>1, 'min'=>"0",'max'=>"5000"));
|
| 29 |
|
29 |
|
| 30 |
$type=array('Refund'=>'Refund','Adjustment'=>'Adjustment');
|
30 |
$type=array('Refund'=>'Refund','Adjustment'=>'Adjustment');
|
| 31 |
echo $this->Form->input('type', array('options'=>$type, 'selected'=>'Refund'));
|
31 |
echo $this->Form->input('type', array('options'=>$type, 'selected'=>'Refund'));
|
| 32 |
?>
|
32 |
?>
|
| 33 |
<div class = "store hidden">
|
33 |
<div class = "store hidden">
|