31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
|
|
<div class="jobs form">
|
||
|
|
<?php echo $form->create('Job');?>
|
||
|
|
<fieldset>
|
||
|
|
<legend><?php __('Edit Job');?></legend>
|
||
|
|
<?php
|
||
|
|
echo $form->input('id');
|
||
|
|
echo $form->input('title');
|
||
|
|
echo $form->input('state_id');
|
||
|
|
echo $form->input('customer_id');
|
||
|
|
echo $form->input('enquiry_id');
|
||
|
|
echo $form->input('contact_id');
|
||
|
|
echo $form->input('comments');
|
||
|
|
echo $form->input('date_order_received');
|
||
|
|
echo $form->input('date_order_placed_on_principle');
|
||
|
|
echo $form->input('date_scheduled_ex_works');
|
||
|
|
echo $form->input('date_order_sent_to_customer');
|
||
|
|
echo $form->input('customer_order_number');
|
||
|
|
echo $form->input('domestic_freight_paid_by');
|
||
|
|
echo $form->input('sale_category');
|
||
|
|
echo $form->input('shipment_category');
|
||
|
|
?>
|
||
|
|
</fieldset>
|
||
|
|
<?php echo $form->end('Submit');?>
|
||
|
|
</div>
|
||
|
|
<div class="actions">
|
||
|
|
<ul>
|
||
|
|
<li><?php echo $html->link(__('Delete', true), array('action' => 'delete', $form->value('Job.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Job.id'))); ?></li>
|
||
|
|
<li><?php echo $html->link(__('List Jobs', true), array('action' => 'index'));?></li>
|
||
|
|
</ul>
|
||
|
|
</div>
|