Files
opensourcepos/application/views/sales/suspended.php

48 lines
1.3 KiB
PHP

<table id="suspended_sales_table">
<tr>
<th><?php echo $this->lang->line('sales_suspended_sale_id'); ?></th>
<th><?php echo $this->lang->line('sales_date'); ?></th>
<th><?php echo $this->lang->line('sales_customer'); ?></th>
<th><?php echo $this->lang->line('sales_comments'); ?></th>
<th><?php echo $this->lang->line('sales_unsuspend_and_delete'); ?></th>
</tr>
<?php
foreach ($suspended_sales as $suspended_sale)
{
?>
<tr>
<td><?php echo $suspended_sale['sale_id'];?></td>
<td><?php echo date($this->config->item('dateformat'),strtotime($suspended_sale['sale_time']));?></td>
<td>
<?php
if (isset($suspended_sale['customer_id']))
{
$customer = $this->Customer->get_info($suspended_sale['customer_id']);
echo $customer->first_name. ' '. $customer->last_name;
}
else
{
?>
&nbsp;
<?php
}
?>
</td>
<td><?php echo $suspended_sale['comment'];?></td>
<td>
<?php
echo form_open('sales/unsuspend');
echo form_hidden('suspended_sale_id', $suspended_sale['sale_id']);
?>
<input type="submit" name="submit" value="<?php echo $this->lang->line('sales_unsuspend'); ?>" id="submit" class="btn btn-primary btn-xs pull-right"></td>
<?php
echo form_close();
?>
</tr>
<?php
}
?>
</table>