Subversion Repositories SmartDukaan

Rev

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

Rev 14517 Rev 14561
Line 9... Line 9...
9
			<table cellpadding="0" cellspacing="0">
9
			<table cellpadding="0" cellspacing="0">
10
			<tr>
10
			<tr>
11
					<th><?php echo __('sku'); ?></th>
11
					<th><?php echo __('sku'); ?></th>
12
					<th><?php echo __('Name'); ?></th>
12
					<th><?php echo __('Name'); ?></th>
13
					<!-- <th><?php //echo __('startDate'); ?></th> -->
13
					<!-- <th><?php //echo __('startDate'); ?></th> -->
14
					<!-- <th><?php //echo __('endDate'); ?></th> -->
14
					<th><?php echo __('Bundle Id'); ?></th>
15
					<th><?php echo __('schemeAmount'); ?></th>
15
					<th><?php echo __('schemeAmount'); ?></th>
16
					<th class="actions"><?php echo __('Actions'); ?></th>
16
					<th class="actions"><?php echo __('Actions'); ?></th>
17
			</tr>
17
			</tr>
18
			<?php foreach ($skuschemes as $skuscheme): ?>
18
			<?php foreach ($skuschemes as $skuscheme): ?>
19
			<?php 
19
			<?php 
Line 23... Line 23...
23
			?>
23
			?>
24
			<tr>
24
			<tr>
25
				<td><?php echo h($skuscheme['sku']); ?>&nbsp;</td>
25
				<td><?php echo h($skuscheme['sku']); ?>&nbsp;</td>
26
				<td><?php echo h($skuscheme['source_product_name']); ?>&nbsp;</td>				
26
				<td><?php echo h($skuscheme['source_product_name']); ?>&nbsp;</td>				
27
				<!-- <td><?php //echo date('d-m-Y',$skuscheme['startDate']/1000); ?>&nbsp;</td> -->
27
				<!-- <td><?php //echo date('d-m-Y',$skuscheme['startDate']/1000); ?>&nbsp;</td> -->
28
				<!-- <td><?php //echo date('d-m-Y',$skuscheme['endDate']/1000); ?>&nbsp;</td> -->
28
				<td><?php echo $skuscheme['skuBundleId']; ?>&nbsp;</td>
29
				<td class="edit" id="schemeAmount" data-oid="<?php echo $skuscheme['_id']['$oid'];?>" ><?php echo h($skuscheme['schemeAmount']); ?></td>
29
				<td class="edit" id="schemeAmount" data-oid="<?php echo $skuscheme['_id']['$oid'];?>" ><?php echo h($skuscheme['schemeAmount']); ?></td>
30
				<td class="actions">
30
				<td class="actions">
31
					<?php //echo $this->Html->link(__('Edit'), array('action' => 'edit', $skuscheme['_id']['$oid'])); ?>
31
					<?php //echo $this->Html->link(__('Edit'), array('action' => 'edit', $skuscheme['_id']['$oid'])); ?>
32
					<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $skuscheme['_id']['$oid']), null, __('Are you sure you want to delete # %s?', $skuscheme['_id']['$oid'])); ?>
32
					<?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $skuscheme['_id']['$oid']), null, __('Are you sure you want to delete # %s?', $skuscheme['_id']['$oid'])); ?>
33
				</td>
33
				</td>