| 14510 |
anikendra |
1 |
<div class="container">
|
|
|
2 |
<div class="row">
|
|
|
3 |
<div class="col-lg-3">
|
|
|
4 |
<?php echo $this->Element('adminactions');?>
|
|
|
5 |
</div>
|
|
|
6 |
<div class="col-lg-9">
|
| 16493 |
anikendra |
7 |
<?php echo $this->Form->create('ManualDeals'); ?>
|
| 14510 |
anikendra |
8 |
<fieldset>
|
|
|
9 |
<legend><?php echo __('Add Manual Deal'); ?></legend>
|
|
|
10 |
<?php
|
|
|
11 |
echo $this->Form->input('sku',array('type'=>'number'));
|
| 14517 |
anikendra |
12 |
echo $this->Form->input('startDate',array('type'=>'datetime','timeFormat'=>24));
|
|
|
13 |
echo $this->Form->input('endDate',array('type'=>'datetime','timeFormat'=>24));
|
| 16493 |
anikendra |
14 |
// echo $this->Form->input('dealThresholdPrice');
|
| 16496 |
anikendra |
15 |
echo $this->Form->input('dealUrl');
|
| 14510 |
anikendra |
16 |
echo $this->Form->input('source_id',array('type'=>'select','options'=>$sources));
|
|
|
17 |
echo $this->Form->input('dealType',array('type'=>'hidden','value'=>1));
|
|
|
18 |
echo $this->Form->input('dealDescription',array('type'=>'hidden','value'=>'Lightning Deal'));
|
| 15077 |
anikendra |
19 |
//echo $this->Form->input('multi',array('type'=>'checkbox'));
|
| 14510 |
anikendra |
20 |
?>
|
|
|
21 |
</fieldset>
|
|
|
22 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
23 |
</div>
|
|
|
24 |
</div>
|
|
|
25 |
</div>
|
|
|
26 |
</div>
|