89 lines
3.1 KiB
PHP
89 lines
3.1 KiB
PHP
<div class="shipmentInvoices index">
|
|
<h2><?php __('ShipmentInvoices');?></h2>
|
|
<p>
|
|
<?php
|
|
echo $paginator->counter(array(
|
|
'format' => __('Page %page% of %pages%, showing %current% records out of %count% total, starting on record %start%, ending on %end%', true)
|
|
));
|
|
?></p>
|
|
<table cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<th><?php echo $paginator->sort('id');?></th>
|
|
<th><?php echo $paginator->sort('shipment_id');?></th>
|
|
<th><?php echo $paginator->sort('principle_id');?></th>
|
|
<th><?php echo $paginator->sort('currency_id');?></th>
|
|
<th><?php echo $paginator->sort('freight_forwarder_id');?></th>
|
|
<th><?php echo $paginator->sort('invoice_number');?></th>
|
|
<th><?php echo $paginator->sort('invoice_amount');?></th>
|
|
<th><?php echo $paginator->sort('deferred_gst');?></th>
|
|
<th><?php echo $paginator->sort('approved');?></th>
|
|
<th><?php echo $paginator->sort('paid');?></th>
|
|
<th><?php echo $paginator->sort('date_paid');?></th>
|
|
<th><?php echo $paginator->sort('invoice_type');?></th>
|
|
<th class="actions"><?php __('Actions');?></th>
|
|
</tr>
|
|
<?php
|
|
$i = 0;
|
|
foreach ($shipmentInvoices as $shipmentInvoice):
|
|
$class = null;
|
|
if ($i++ % 2 == 0) {
|
|
$class = ' class="altrow"';
|
|
}
|
|
?>
|
|
<tr<?php echo $class;?>>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['id']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['shipment_id']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['principle_id']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['currency_id']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['freight_forwarder_id']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['invoice_number']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['invoice_amount']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['deferred_gst']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['approved']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['paid']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['date_paid']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $shipmentInvoice['ShipmentInvoice']['invoice_type']; ?>
|
|
</td>
|
|
<td class="actions">
|
|
<?php echo $html->link(__('View', true), array('action' => 'view', $shipmentInvoice['ShipmentInvoice']['id'])); ?>
|
|
<?php echo $html->link(__('Edit', true), array('action' => 'edit', $shipmentInvoice['ShipmentInvoice']['id'])); ?>
|
|
<?php echo $html->link(__('Delete', true), array('action' => 'delete', $shipmentInvoice['ShipmentInvoice']['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $shipmentInvoice['ShipmentInvoice']['id'])); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
</div>
|
|
<div class="paging">
|
|
<?php echo $paginator->prev('<< '.__('previous', true), array(), null, array('class'=>'disabled'));?>
|
|
| <?php echo $paginator->numbers();?>
|
|
<?php echo $paginator->next(__('next', true).' >>', array(), null, array('class' => 'disabled'));?>
|
|
</div>
|
|
<div class="actions">
|
|
<ul>
|
|
<li><?php echo $html->link(__('New ShipmentInvoice', true), array('action' => 'add')); ?></li>
|
|
</ul>
|
|
</div>
|