| Line 7... |
Line 7... |
| 7 |
<?php echo $this->Form->create('MasterData'); ?>
|
7 |
<?php echo $this->Form->create('MasterData'); ?>
|
| 8 |
<fieldset>
|
8 |
<fieldset>
|
| 9 |
<legend><?php echo __('Add Master Data'); ?></legend>
|
9 |
<legend><?php echo __('Add Master Data'); ?></legend>
|
| 10 |
<?php
|
10 |
<?php
|
| 11 |
echo $this->Form->input('available_price');
|
11 |
echo $this->Form->input('available_price');
|
| 12 |
echo $this->Form->input('gross_price');
|
12 |
echo $this->Form->input('gross_price',array('value'=>0));
|
| 13 |
echo $this->Form->input('brand');
|
13 |
echo $this->Form->input('brand');
|
| 14 |
echo $this->Form->input('cashback', array('type' => 'hidden' ));
|
14 |
echo $this->Form->input('cashback', array('type' => 'hidden' ));
|
| 15 |
echo $this->Form->input('category_id');
|
15 |
echo $this->Form->input('category_id');
|
| 16 |
echo $this->Form->input('category',array('type'=>'text','value'=>'Mobiles'));
|
16 |
echo $this->Form->input('category',array('type'=>'text','value'=>'Mobiles'));
|
| 17 |
echo $this->Form->input('identifier',array('required'=>1));
|
17 |
echo $this->Form->input('identifier',array('required'=>1));
|