| Line 7... |
Line 7... |
| 7 |
<?php echo $this->Form->create('ManualDeal'); ?>
|
7 |
<?php echo $this->Form->create('ManualDeal'); ?>
|
| 8 |
<fieldset>
|
8 |
<fieldset>
|
| 9 |
<legend><?php echo __('Add Manual Deal'); ?></legend>
|
9 |
<legend><?php echo __('Add Manual Deal'); ?></legend>
|
| 10 |
<?php
|
10 |
<?php
|
| 11 |
echo $this->Form->input('sku',array('type'=>'number'));
|
11 |
echo $this->Form->input('sku',array('type'=>'number'));
|
| 12 |
echo $this->Form->input('startDate',array('type'=>'date'));
|
12 |
echo $this->Form->input('startDate',array('type'=>'datetime','timeFormat'=>24));
|
| 13 |
echo $this->Form->input('endDate',array('type'=>'date'));
|
13 |
echo $this->Form->input('endDate',array('type'=>'datetime','timeFormat'=>24));
|
| 14 |
echo $this->Form->input('source_id',array('type'=>'select','options'=>$sources));
|
14 |
echo $this->Form->input('source_id',array('type'=>'select','options'=>$sources));
|
| 15 |
echo $this->Form->input('dealType',array('type'=>'hidden','value'=>1));
|
15 |
echo $this->Form->input('dealType',array('type'=>'hidden','value'=>1));
|
| 16 |
echo $this->Form->input('dealDescription',array('type'=>'hidden','value'=>'Lightning Deal'));
|
16 |
echo $this->Form->input('dealDescription',array('type'=>'hidden','value'=>'Lightning Deal'));
|
| 17 |
?>
|
17 |
?>
|
| 18 |
</fieldset>
|
18 |
</fieldset>
|