| Line 21... |
Line 21... |
| 21 |
<h2><?php echo __('Item Cashbacks'); ?></h2>
|
21 |
<h2><?php echo __('Item Cashbacks'); ?></h2>
|
| 22 |
<table cellpadding="0" cellspacing="0" class="table table-striped" >
|
22 |
<table cellpadding="0" cellspacing="0" class="table table-striped" >
|
| 23 |
<tr>
|
23 |
<tr>
|
| 24 |
|
24 |
|
| 25 |
<th><?php echo __('skuId'); ?></th>
|
25 |
<th><?php echo __('skuId'); ?></th>
|
| - |
|
26 |
<th><?php echo __('source'); ?></th>
|
| 26 |
<th><?php echo __('cash_back_description'); ?></th>
|
27 |
<th><?php echo __('Product'); ?></th>
|
| 27 |
<th><?php echo __('cash_back');?></th>
|
28 |
<th><?php echo __('cash_back');?></th>
|
| 28 |
<th><?php echo __('cash_back_status');?>
|
29 |
<th><?php echo __('cash_back_status');?>
|
| 29 |
<th><?php echo __('cash_back_type');?>
|
30 |
<th><?php echo __('cash_back_type');?>
|
| 30 |
<th><?php echo __('Action');?>
|
31 |
<th><?php echo __('Action');?>
|
| 31 |
</tr>
|
32 |
</tr>
|
| 32 |
<?php foreach ($cashbacks as $cashback): ?>
|
33 |
<?php foreach ($cashbacks as $cashback): ?>
|
| 33 |
<tr>
|
34 |
<tr>
|
| 34 |
<td><?php echo h($cashback['sku']); ?></td>
|
35 |
<td><?php echo h($cashback['skuId']); ?></td>
|
| 35 |
<td><?php echo h($cashback['cash_back_description']); ?></td>
|
36 |
<td><?php echo h($cashback['source']); ?></td>
|
| - |
|
37 |
<td><?php echo h($cashback['product_name']); ?></td>
|
| 36 |
<td><?php echo h($cashback['cash_back']); ?></td>
|
38 |
<td><?php echo h($cashback['cash_back']); ?></td>
|
| 37 |
<td><?php echo h($cashback['cash_back_status']); ?></td>
|
39 |
<td><?php echo h($cashback['cash_back_status']); ?></td>
|
| 38 |
<td><?php echo h($cashback['cash_back_type']); ?></td>
|
40 |
<td><?php echo h($cashback['cash_back_type']); ?></td>
|
| 39 |
<td class="actions">
|
41 |
<td class="actions">
|
| 40 |
<?php //echo $this->Html->link(__('View'), array('action' => 'view', $objects['_id'])); ?>
|
42 |
<?php //echo $this->Html->link(__('View'), array('action' => 'view', $objects['_id'])); ?>
|