cmc-sales/views/jobs/fix_jobs.ctp

44 lines
575 B
PHP

<table>
<tr>
<th>id</th>
<th>customer_id</th>
<th>Enq Cust ID</th>
<th>state_id</th>
<th>Enq State ID</th>
<th>contact_id</th>
<th>Enq Contact ID</th>
</tr>
<?
foreach($jobs as $job):
?>
<tr>
<td><?=$job['Job']['id'];?></td>
<td><?=$job['Job']['customer_id'];?></td>
<td><?=$job['Enquiry']['customer_id'];?></td>
<td><?=$job['Job']['state_id']?></td>
<td><?=$job['Enquiry']['state_id']?></td>
<td><?=$job['Job']['contact_id']?></td>
<td><?=$job['Enquiry']['contact_id']?></td>
</tr>
<?
endforeach;?>
</table>
<?
debug($jobs);
?>