cmc-sales/views/elements/enquiry_table.ctp
2012-11-10 11:50:52 +11:00

191 lines
8 KiB
PHP
Executable file

<?php echo $javascript->link('jquery.jeditable.mini');
echo $javascript->link('enquiry_table'); ?>
<?php echo $paginator->options(array('url' => $this->passedArgs)); ?>
<?php
echo $paginator->counter(array(
'format' => __('Page %page% of %pages%, showing %current% Enquiries out of %count% total, starting on record %start%, ending on %end%', true)
));
?>
<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>
<table cellpadding="0" cellspacing="0" class="mer">
<thead>
<tr>
<th class="paginatorSort"><?php echo $paginator->sort('user_id'); ?></th>
<th class="paginatorSort"><?php echo $paginator->sort('Date', 'created'); ?></th>
<?php /* <th> echo $paginator->sort('Date Submitted', 'submitted'); </th> */ ?>
<th class="paginatorSort"><?php echo $paginator->sort('principle_id'); ?></th>
<th class="paginatorSort"><?php echo $paginator->sort('Enquiry Number', 'title'); ?></th>
<th class="paginatorSort"><?php echo $paginator->sort('customer_id'); ?></th>
<th class="paginatorSort"><?php echo $paginator->sort('contact_id'); ?></th>
<th><?php __('Email'); ?></th>
<th><?php __('Phone No'); ?></th>
<th><?php echo $paginator->sort('status_id'); ?></th>
<th>Comments</th>
<th class="actions"><?php __('Actions'); ?></th>
</tr>
</thead>
<tbody>
<?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.
*
* re-do this as a switch statement. -Feb 2011.
*
* */
if ($enquiry['Status']['id'] == 3) {
$class = ' class="jobwon"';
} else if ($enquiry['Status']['id'] == 4) {
$class = ' class="joblost"';
} else if ($enquiry['Status']['id'] == 8) {
$class = ' class="joblost"';
} else if ($enquiry['Status']['id'] == 9) {
$class = ' class="joblost"';
} else if ($enquiry['Status']['id'] == 10) {
$class = ' class="joblost"';
} else if ($enquiry['Status']['id'] == 6) {
$class = ' class="information"';
} else if ($enquiry['Status']['id'] == 11) {
$class = ' class="informationsent"';
} else if ($enquiry['Status']['id'] == 5) {
$class = ' class="quoted"';
} else if ($enquiry['Status']['id'] == 1) {
$class = ' class="requestforquote"';
}
?>
<tr<?php echo $class; ?> id="row<?php echo $enquiry['Enquiry']['id']; ?>">
<?php
$nameclass = null;
if ($enquiry['Enquiry']['posted'] == 1) {
$nameclass = ' class="posted"';
} else {
$nameclass = 'class="notposted"';
}
?>
<td <?= $nameclass ?>>
<?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 class="enqdate">
<?php
/* Change the date from MySQL DATETIME to a D M Y format */
echo date('j M Y', $time->toUnix($enquiry['Enquiry']['created']));
?>
</td>
<?php
/* <td class="enqdate">
Change the date from MySQL DATETIME to a D M Y format
if($enquiry['Enquiry']['submitted']) {
echo date('j M Y',$time->toUnix($enquiry['Enquiry']['submitted']));
}
else {
/* Maybe should make this so only the assigned user can mark it as submitted.
echo $html->link('Not Submitted', array('controller'=>'enquiries', 'action'=>'mark_submitted', $enquiry['Enquiry']['id']));
}
</td>
*/
?>
<td class="principlename">
<?php
if ($enquiry['Principle']['short_name']) {
echo $html->link($enquiry['Principle']['short_name'], array('controller' => 'principles', 'action' => 'view', $enquiry['Principle']['id']));
} else {
echo $html->link($enquiry['Principle']['name'], array('controller' => 'principles', 'action' => 'view', $enquiry['Principle']['id']));
}
?>
</td>
<td>
<?php echo $html->link($enquiry['Enquiry']['title'], array('controller' => 'enquiries', 'action' => 'view', $enquiry['Enquiry']['id'])); ?>
</td>
<td class="customername">
<?php echo $html->link($enquiry['Customer']['name'], array('controller' => 'customers', 'action' => 'view', $enquiry['Customer']['id'])); ?>
</td>
<td class="contactname">
<?php echo $html->link($enquiry['Contact']['first_name'] . ' ' . $enquiry['Contact']['last_name'], array('controller' => 'users', 'action' => 'view', $enquiry['Contact']['id'])); ?>
</td>
<td class="contactemail">
<? //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 class="contactemail">
<?php
if ($enquiry['Contact']['mobile']) {
echo $enquiry['Contact']['mobile'];
} else if ($enquiry['Contact']['direct_phone']) {
echo $enquiry['Contact']['direct_phone'];
} else {
echo $enquiry['Contact']['phone'];
if ($enquiry['Contact']['phone_extension']) {
echo ' ext:' . $enquiry['Contact']['phone_extension'];
}
}
?>
</td>
<td class="statusTD">
<div class="status" id="<?php echo $enquiry['Enquiry']['id']; ?>">
<?php echo $enquiry['Status']['name']; ?>
</div>
</td>
<td class="comments"><?
if (strlen($enquiry['Enquiry']['comments']) > 150) {
echo substr($enquiry['Enquiry']['comments'], 0, 150);
echo $html->link('.....', array('controller' => 'enquiries', 'action' => 'view', $enquiry['Enquiry']['id']));
} else {
echo $enquiry['Enquiry']['comments'];
}
;
?></td>
<td class="viewedit">
<?php echo $html->link(__('View', true), array('controller' => 'enquiries', 'action' => 'view', $enquiry['Enquiry']['id'])); ?>
<?php echo $html->link(__('Edit', true), array('controller' => 'enquiries', 'action' => 'edit', $enquiry['Enquiry']['id'])); ?>
</td>
</tr>
<?php $i++; ?>
<?php endforeach; ?>
</tbody>
</table>
<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>
<div id="statusJSONlist" style="display: none;"><?= $status_list; ?></div>
<div id="statusClassNames" style="display: none;"><?=$class_names;?></div>
<?
//debug($enquiries);?>