36 lines
2.1 KiB
Plaintext
36 lines
2.1 KiB
Plaintext
|
|
<div class="shipments form">
|
||
|
|
<?php echo $form->create('Shipment');?>
|
||
|
|
<fieldset>
|
||
|
|
<legend><?php __('Add Shipment');?></legend>
|
||
|
|
<?php
|
||
|
|
echo $form->input('box_count');
|
||
|
|
echo $form->input('freight_forwarder_id');
|
||
|
|
echo $form->input('date_arrived');
|
||
|
|
echo $form->input('date_dispatched');
|
||
|
|
echo $form->input('airway_bill');
|
||
|
|
echo $form->input('comments');
|
||
|
|
echo $form->input('Job');
|
||
|
|
echo $form->input('Principle');
|
||
|
|
echo $form->input('PurchaseOrder');
|
||
|
|
?>
|
||
|
|
</fieldset>
|
||
|
|
<?php echo $form->end('Submit');?>
|
||
|
|
</div>
|
||
|
|
<div class="actions">
|
||
|
|
<ul>
|
||
|
|
<li><?php echo $html->link(__('List Shipments', true), array('action' => 'index'));?></li>
|
||
|
|
<li><?php echo $html->link(__('List Freight Forwarders', true), array('controller' => 'freight_forwarders', 'action' => 'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Freight Forwarder', true), array('controller' => 'freight_forwarders', 'action' => 'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Boxes', true), array('controller' => 'boxes', 'action' => 'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Box', true), array('controller' => 'boxes', 'action' => 'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Shipment Invoices', true), array('controller' => 'shipment_invoices', 'action' => 'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Shipment Invoice', true), array('controller' => 'shipment_invoices', 'action' => 'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Jobs', true), array('controller' => 'jobs', 'action' => 'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Job', true), array('controller' => 'jobs', 'action' => 'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Principles', true), array('controller' => 'principles', 'action' => 'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Principle', true), array('controller' => 'principles', 'action' => 'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Purchase Orders', true), array('controller' => 'purchase_orders', 'action' => 'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Purchase Order', true), array('controller' => 'purchase_orders', 'action' => 'add')); ?> </li>
|
||
|
|
</ul>
|
||
|
|
</div>
|