| 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('MasterData'); ?>
|
|
|
8 |
<fieldset>
|
|
|
9 |
<legend><?php echo __('Add Master Data'); ?></legend>
|
|
|
10 |
<?php
|
|
|
11 |
echo $this->Form->input('available_price');
|
|
|
12 |
echo $this->Form->input('brand');
|
|
|
13 |
echo $this->Form->input('cashback', array('type' => 'hidden' ));
|
|
|
14 |
echo $this->Form->input('category_id');
|
|
|
15 |
echo $this->Form->input('category',array('type'=>'text','value'=>'Mobiles'));
|
|
|
16 |
echo $this->Form->input('identifier',array('required'=>1));
|
|
|
17 |
echo $this->Form->input('marketPlaceUrl');
|
|
|
18 |
echo $this->Form->input('model_name');
|
|
|
19 |
echo $this->Form->input('mrp',array('value'=>0));
|
|
|
20 |
echo $this->Form->input('maxPrice',array('value'=>0));
|
|
|
21 |
echo $this->Form->input('product_name');
|
|
|
22 |
echo $this->Form->input('rank');
|
|
|
23 |
echo $this->Form->input('source_id');
|
|
|
24 |
echo $this->Form->input('source',array('type'=>'text','value'=>'Amazon'));
|
|
|
25 |
echo $this->Form->input('secondaryIdentifier');
|
|
|
26 |
echo $this->Form->input('sourceCategoryId', array('type' => 'hidden' ));
|
|
|
27 |
echo $this->Form->input('sourceProductId', array('type' => 'hidden' ));
|
|
|
28 |
echo $this->Form->input('source_product_name');
|
|
|
29 |
echo $this->Form->input('source_url');
|
|
|
30 |
echo $this->Form->input('status');
|
|
|
31 |
echo $this->Form->input('in_stock',array('type'=>'select','options'=>$stock_statuses));
|
|
|
32 |
echo $this->Form->input('stock_status');
|
|
|
33 |
echo $this->Form->input('thumbnail');
|
|
|
34 |
echo $this->Form->input('url');
|
|
|
35 |
echo $this->Form->input('offer');
|
|
|
36 |
echo $this->Form->input('tagline');
|
|
|
37 |
echo $this->Form->input('is_shortage',array('type'=>'select','options'=>$shortage_status));
|
|
|
38 |
?>
|
|
|
39 |
</fieldset>
|
|
|
40 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
41 |
</div>
|
|
|
42 |
</div>
|
|
|
43 |
</div>
|
|
|
44 |
</div>
|