Subversion Repositories SmartDukaan

Rev

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

Rev 13646 Rev 14225
Line 7... Line 7...
7
			<?php echo $this->Form->create('Skuscheme'); ?>
7
			<?php echo $this->Form->create('Skuscheme'); ?>
8
				<fieldset>
8
				<fieldset>
9
					<legend><?php echo __('Add sku-wise scheme'); ?></legend>
9
					<legend><?php echo __('Add sku-wise scheme'); ?></legend>
10
				<?php
10
				<?php
11
					echo $this->Form->input('sku',array('type'=>'number'));
11
					echo $this->Form->input('sku',array('type'=>'number'));
12
					echo $this->Form->input('startDate');
12
				//	echo $this->Form->input('startDate');
13
					echo $this->Form->input('endDate');
13
				//	echo $this->Form->input('endDate');
14
					echo $this->Form->input('scheme_amount');
14
					echo $this->Form->input('scheme_amount');
15
				?>
15
				?>
16
				</fieldset>
16
				</fieldset>
17
			<?php echo $this->Form->end(__('Submit')); ?>
17
			<?php echo $this->Form->end(__('Submit')); ?>
18
		</div>
18
		</div>
Line 23... Line 23...
23
<script type="text/javascript">
23
<script type="text/javascript">
24
$(function(){
24
$(function(){
25
	$('#SkuschemeStartDate').datepick();
25
	$('#SkuschemeStartDate').datepick();
26
	$('#SkuschemeEndDate').datepick();
26
	$('#SkuschemeEndDate').datepick();
27
});
27
});
28
</script>
-
 
29
28
</script>
-
 
29