Subversion Repositories SmartDukaan

Rev

Rev 13637 | Rev 14225 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13637 Rev 13646
Line 1... Line 1...
1
<div class="skuschemes form">
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">
2
<?php echo $this->Form->create('Skuscheme'); ?>
7
			<?php echo $this->Form->create('Skuscheme'); ?>
3
	<fieldset>
8
				<fieldset>
4
		<legend><?php echo __('Admin Add Skuscheme'); ?></legend>
9
					<legend><?php echo __('Add sku-wise scheme'); ?></legend>
5
	<?php
10
				<?php
-
 
11
					echo $this->Form->input('sku',array('type'=>'number'));
6
		echo $this->Form->input('startDate');
12
					echo $this->Form->input('startDate');
7
		echo $this->Form->input('endDate');
13
					echo $this->Form->input('endDate');
8
		echo $this->Form->input('scheme_amount');
14
					echo $this->Form->input('scheme_amount');
9
	?>
15
				?>
10
	</fieldset>
16
				</fieldset>
11
<?php echo $this->Form->end(__('Submit')); ?>
17
			<?php echo $this->Form->end(__('Submit')); ?>
12
</div>
18
		</div>
13
<div class="actions">
-
 
14
	<h3><?php echo __('Actions'); ?></h3>
-
 
15
	<ul>
-
 
16
 
-
 
17
		<li><?php echo $this->Html->link(__('List Skuschemes'), array('action' => 'index')); ?></li>
-
 
18
	</ul>
19
	</div>
19
</div>
20
</div>
-
 
21
<script type="text/javascript" src="<?php echo $base_url;?>/js/jquery.datepick.js"></script>
-
 
22
<style type="text/css">@import "<?php echo  $base_url;?>/css/jquery.datepick.css";</style> 
-
 
23
<script type="text/javascript">
-
 
24
$(function(){
-
 
25
	$('#SkuschemeStartDate').datepick();
-
 
26
	$('#SkuschemeEndDate').datepick();
-
 
27
});
-
 
28
</script>
20
29