Ajax loading icon. Search now finds customer PO and Job numbers

This commit is contained in:
Karl Cordes 2010-05-20 15:51:41 +10:00
parent 857bc1b986
commit f701a6719a

View file

@ -122,7 +122,7 @@
<th>First Name</th> <th>First Name</th>
<th>Last Name</th> <th>Last Name</th>
<th>Customer</th> <th>Customer</th>
<th class="actions"></th> <th class="actions">Actions</th>
</tr> </tr>
<?php <?php
$i = 0; $i = 0;
@ -154,6 +154,7 @@
<th>Job Number</th> <th>Job Number</th>
<th>Enquiry</th> <th>Enquiry</th>
<th>Customer PO Number</th> <th>Customer PO Number</th>
<th class="actions">Actions</th>
</tr> </tr>
<?php <?php
@ -167,9 +168,10 @@
} }
?> ?>
<td><?php echo $job['Job']['date_order_received']; ?></td> <td><?php echo $job['Job']['date_order_received']; ?></td>
<td><?php echo $job['Job']['title']; ?></td> <td><?php echo $html->link($job['Job']['title'], '/jobs/view/'.$job['Job']['id']) ; ?></td>
<td><?php echo $job['Enquiry']['title']; ?></td> <td><?php echo $html->link($job['Enquiry']['title'], '/enquiries/view/'.$job['Enquiry']['id']); ?></td>
<td><?php echo $job['Job']['customer_order_number']; ?></td> <td><?php echo $job['Job']['customer_order_number']; ?></td>
<td><?php echo $html->link('View', '/jobs/view/'.$job['Job']['id']); ?> </td>
</tr> </tr>
<? <?