100 lines
3.7 KiB
Plaintext
100 lines
3.7 KiB
Plaintext
<?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" class="mer">
|
|
<tr>
|
|
<th><?php echo $paginator->sort('user_id');?></th>
|
|
<th><?php echo $paginator->sort('Date', 'created');?></th>
|
|
<th><?php echo $paginator->sort('Enquiry Number', 'title');?></th>
|
|
<th><?php echo $paginator->sort('customer_id');?></th>
|
|
<th><?php echo $paginator->sort('contact_id');?></th>
|
|
<th><?php __('Email'); ?></th>
|
|
<th><?php echo $paginator->sort('state_id');?></th>
|
|
<th><?php echo $paginator->sort('country_id');?></th>
|
|
<th><?php echo $paginator->sort('principle_id');?></th>
|
|
<th><?php echo $paginator->sort('status_id');?></th>
|
|
<th><?php echo $paginator->sort('comments');?></th>
|
|
<th class="actions"><?php __('Actions');?></th>
|
|
</tr>
|
|
<?php
|
|
//$i = 0;
|
|
foreach ($enquiries as $enquiry):
|
|
$class = null;
|
|
//if ($i++ % 2 == 0) {
|
|
// $class = ' class="altrow"';
|
|
//}
|
|
/* Set Row colour to Yellow if the Job has been won and turned into an order */
|
|
if($enquiry['Status']['id'] == 3) {
|
|
$class = ' class="jobwon"';
|
|
}
|
|
else if($enquiry['Status']['id'] == 4) {
|
|
$class = ' class="joblost"';
|
|
}
|
|
else if($enquiry['Status']['id'] == 5) {
|
|
$class = ' class="quoteissued"';
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
<tr<?php echo $class;?>>
|
|
|
|
<td>
|
|
<?php
|
|
/* Take the First Letter from First/Last Names to make the initials. Could be a problem if Users have the Same Initials */
|
|
$firstname = $enquiry['User']['first_name'];
|
|
$lastname = $enquiry['User']['last_name']; ?>
|
|
<?php echo $html->link($firstname[0].$lastname[0], array('controller'=> 'users', 'action'=>'view', $enquiry['User']['id'])); ?>
|
|
</td>
|
|
<td>
|
|
<?php
|
|
/* Change the date from MySQL DATETIME to a D M Y format */
|
|
echo date('j M Y',$time->toUnix($enquiry['Enquiry']['created'])); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $html->link(__($enquiry['Enquiry']['title'], true), array('action'=>'view', $enquiry['Enquiry']['id'])); ?>
|
|
</td>
|
|
|
|
<td>
|
|
<?php echo $html->link($enquiry['Customer']['name'], array('controller'=> 'customers', 'action'=>'view', $enquiry['Customer']['id'])); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $html->link($enquiry['Contact']['name'], array('controller'=> 'contacts', 'action'=>'view', $enquiry['Contact']['id'])); ?>
|
|
</td>
|
|
<td>
|
|
<? //BCC address to Con is hardcoded in here. ?>
|
|
<?php echo $html->link($enquiry['Contact']['email'], 'mailto:'.$enquiry['Contact']['email'].'?subject='.$enquiry['Enquiry']['title'].'&bcc=carpis@cmctechnologies.com.au'); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $html->link($enquiry['State']['shortform'], array('controller'=> 'states', 'action'=>'view', $enquiry['State']['id'])); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $html->link($enquiry['Country']['name'], array('controller'=> 'countries', 'action'=>'view', $enquiry['Country']['id'])); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $html->link($enquiry['Principle']['name'], array('controller'=> 'principles', 'action'=>'view', $enquiry['Principle']['id'])); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $html->link($enquiry['Status']['name'], array('controller'=> 'statuses', 'action'=>'view', $enquiry['Status']['id'])); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $enquiry['Enquiry']['comments']; ?>
|
|
</td>
|
|
<td class="actions">
|
|
<?php echo $html->link(__('View', true), array('action'=>'view', $enquiry['Enquiry']['id'])); ?>
|
|
<?php echo $html->link(__('Edit', true), array('action'=>'edit', $enquiry['Enquiry']['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>
|
|
|