| 15403 |
manish.sha |
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">
|
|
|
7 |
<?php echo $this->Form->create('Exceptionalskudiscount'); ?>
|
|
|
8 |
<fieldset>
|
|
|
9 |
<legend><?php echo __('Admin Add Exceptionalskudiscount'); ?></legend>
|
|
|
10 |
<?php
|
|
|
11 |
echo $this->Form->input('sku',array('type' => 'number' ));
|
|
|
12 |
echo $this->Form->input('min_discount');
|
|
|
13 |
echo $this->Form->input('max_discount');
|
|
|
14 |
echo $this->Form->input('discountType',array('type'=>'select','options'=>array('MRP'=>'MRP','DP'=>'DP')));
|
|
|
15 |
echo $this->Form->input('multi',array('type'=>'checkbox'));
|
|
|
16 |
?>
|
|
|
17 |
</fieldset>
|
|
|
18 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
19 |
</div>
|
|
|
20 |
</div>
|
|
|
21 |
</div>
|
|
|
22 |
</div>
|