Skip to content
Snippets Groups Projects
ticket-view.inc.php 51 KiB
Newer Older
  • Learn to ignore specific revisions
  • include_once INCLUDE_DIR . 'class.thread_actions.php';
    
    
    //Note that ticket obj is initiated in tickets.php.
    if(!defined('OSTSCPINC') || !$thisstaff || !is_object($ticket) || !$ticket->getId()) die('Invalid path');
    
    //Make sure the staff is allowed to access the page.
    
    if(!@$thisstaff->isStaff() || !$ticket->checkStaffPerm($thisstaff)) die('Access Denied');
    
    
    //Re-use the post info on error...savekeyboards.org (Why keyboard? -> some people care about objects than users!!)
    $info=($_POST && $errors)?Format::input($_POST):array();
    
    //Auto-lock the ticket if locking is enabled.. If already locked by the user then it simply renews.
    if($cfg->getLockTime() && !$ticket->acquireLock($thisstaff->getId(),$cfg->getLockTime()))
    
        $warn.=__('Unable to obtain a lock on the ticket');
    
    
    //Get the goodies.
    $dept  = $ticket->getDept();  //Dept
    
    $role  = $thisstaff->getRole($dept);
    
    $staff = $ticket->getStaff(); //Assigned or closed by..
    
    Peter Rotich's avatar
    Peter Rotich committed
    $user  = $ticket->getOwner(); //Ticket User (EndUser)
    
    $team  = $ticket->getTeam();  //Assigned team.
    
    $sla   = $ticket->getSLA();
    
    $lock  = $ticket->getLock();  //Ticket lock obj
    
    $mylock = ($lock && $lock->getStaffId() == $thisstaff->getId()) ? $lock : null;
    
    $id    = $ticket->getId();    //Ticket ID.
    
    //Useful warnings and errors the user might want to know!
    
    if ($ticket->isClosed() && !$ticket->isReopenable())
        $warn = sprintf(
                __('Current ticket status (%s) does not allow the end user to reply.'),
                $ticket->getStatus());
    elseif ($ticket->isAssigned()
            && (($staff && $staff->getId()!=$thisstaff->getId())
                || ($team && !$team->hasMember($thisstaff))
    
    Peter Rotich's avatar
    Peter Rotich committed
        $warn.= sprintf('&nbsp;&nbsp;<span class="Icon assignedTicket">%s</span>',
    
                sprintf(__('Ticket is assigned to %s'),
                    implode('/', $ticket->getAssignees())
                    ));
    
    if (!$errors['err']) {
    
        if ($lock && $lock->getStaffId()!=$thisstaff->getId())
            $errors['err'] = sprintf(__('This ticket is currently locked by %s'),
                    $lock->getStaffName());
    
        elseif (($emailBanned=Banlist::isBanned($ticket->getEmail())))
    
            $errors['err'] = __('Email is in banlist! Must be removed before any reply/response');
    
        elseif (!Validator::is_valid_email($ticket->getEmail()))
            $errors['err'] = __('EndUser email address is not valid! Consider updating it before responding');
    
    
    $unbannable=($emailBanned) ? BanList::includes($ticket->getEmail()) : false;
    
    if($ticket->isOverdue())
    
        $warn.='&nbsp;&nbsp;<span class="Icon overdueTicket">'.__('Marked overdue!').'</span>';
    
    <div class="has_bottom_border">
        <div class="sticky bar">
           <div class="content">
            <div class="pull-right flush-right">
    
                if ($role->hasPerm(EmailModel::PERM_BANLIST)
                        || $role->hasPerm(TicketModel::PERM_EDIT)
    
                        || ($dept && $dept->isManager($thisstaff))) { ?>
    
                <span class="action-button pull-right" data-dropdown="#action-dropdown-more">
    
                    <i class="icon-caret-down pull-right"></i>
    
                    <span ><i class="icon-cog"></i> <?php echo __('More');?></span>
    
                // Status change options
                echo TicketStatus::status_options();
    
    
                if ($role->hasPerm(TicketModel::PERM_EDIT)) { ?>
    
                    <a class="action-button pull-right" href="tickets.php?id=<?php echo $ticket->getId(); ?>&a=edit"><i class="icon-edit"></i> <?php
    
                        echo __('Edit'); ?></a>
    
    Peter Rotich's avatar
    Peter Rotich committed
                if ($ticket->isOpen()
                        && !$ticket->isAssigned()
    
                        && $role->hasPerm(TicketModel::PERM_ASSIGN)
    
    Peter Rotich's avatar
    Peter Rotich committed
                        && $ticket->getDept()->isMember($thisstaff)) {?>
    
                    <a id="ticket-claim" class="action-button pull-right confirm-action" href="#claim"><i class="icon-user"></i> <?php
    
                        echo __('Claim'); ?></a>
    
                <span class="action-button pull-right" data-dropdown="#action-dropdown-print">
    
                    <i class="icon-caret-down pull-right"></i>
    
                    <a id="ticket-print" href="tickets.php?id=<?php echo $ticket->getId(); ?>&a=print"><i class="icon-print"></i> <?php
                        echo __('Print'); ?></a>
    
                </span>
                <div id="action-dropdown-print" class="action-dropdown anchor-right">
                  <ul>
                     <li><a class="no-pjax" target="_blank" href="tickets.php?id=<?php echo $ticket->getId(); ?>&a=print&notes=0"><i
    
                     class="icon-file-alt"></i> <?php echo __('Ticket Thread'); ?></a>
    
                     <li><a class="no-pjax" target="_blank" href="tickets.php?id=<?php echo $ticket->getId(); ?>&a=print&notes=1"><i
    
                     class="icon-file-text-alt"></i> <?php echo __('Thread + Internal Notes'); ?></a>
    
                <div id="action-dropdown-more" class="action-dropdown anchor-right">
                  <ul>
    
                    <?php
    
                     if ($role->hasPerm(TicketModel::PERM_EDIT)) { ?>
    
                        <li><a class="change-user" href="#tickets/<?php
                        echo $ticket->getId(); ?>/change-user"><i class="icon-user"></i> <?php
    
    Peter Rotich's avatar
    Peter Rotich committed
                        echo __('Change Owner'); ?></a></li>
                    <?php
                     }
    
                     if ($role->hasPerm(TicketModel::PERM_DELETE)) {
    
    Peter Rotich's avatar
    Peter Rotich committed
                        <li><a class="ticket-action" href="#tickets/<?php
    
                        echo $ticket->getId(); ?>/status/delete"
                        data-href="tickets.php"><i class="icon-trash"></i> <?php
    
    Peter Rotich's avatar
    Peter Rotich committed
                        echo __('Delete Ticket'); ?></a></li>
    
                    if($ticket->isOpen() && ($dept && $dept->isManager($thisstaff))) {
    
                            <li><a  class="confirm-action" id="ticket-release" href="#release"><i class="icon-user"></i> <?php
                                echo __('Release (unassign) Ticket'); ?></a></li>
    
                            <li><a class="confirm-action" id="ticket-overdue" href="#overdue"><i class="icon-bell"></i> <?php
                                echo __('Mark as Overdue'); ?></a></li>
    
                        <li><a class="confirm-action" id="ticket-unanswered" href="#unanswered"><i class="icon-circle-arrow-left"></i> <?php
                                echo __('Mark as Unanswered'); ?></a></li>
    
                        <li><a class="confirm-action" id="ticket-answered" href="#answered"><i class="icon-circle-arrow-right"></i> <?php
                                echo __('Mark as Answered'); ?></a></li>
    
                    } ?>
                    <li><a href="#ajax.php/tickets/<?php echo $ticket->getId();
                        ?>/forms/manage" onclick="javascript:
                        $.dialog($(this).attr('href').substr(1), 201);
                        return false"
    
                        ><i class="icon-paste"></i> <?php echo __('Manage Forms'); ?></a></li>
    
    <?php           if ($role->hasPerm(EmailModel::PERM_BANLIST)) {
    
                            <li><a class="confirm-action" id="ticket-banemail"
    
                                href="#banemail"><i class="icon-ban-circle"></i> <?php echo sprintf(
    
                                    Format::htmlchars(__('Ban Email <%s>')),
                                    $ticket->getEmail()); ?></a></li>
    
                    <?php
    
                            <li><a  class="confirm-action" id="ticket-banemail"
    
                                href="#unbanemail"><i class="icon-undo"></i> <?php echo sprintf(
    
                                    Format::htmlchars(__('Unban Email <%s>')),
                                    $ticket->getEmail()); ?></a></li>
    
                <a class="only sticky scroll-up" href="#" onclick="javascript: $('html, body').animate({scrollTop: 0}, 'fast'); return false;"
                    ><i class="icon-chevron-up icon-large"></i>
                </a>
    
            </div>
            <div class="flush-left">
                 <h2><a href="tickets.php?id=<?php echo $ticket->getId(); ?>"
                 title="<?php echo __('Reload'); ?>"><i class="icon-refresh"></i>
                 <?php echo sprintf(__('Ticket #%s'), $ticket->getNumber()); ?></a></h2>
            </div>
        </div>
      </div>
    </div>
    
    <table class="ticket_info" cellspacing="0" cellpadding="0" width="940" border="0">
        <tr>
    
    Peter Rotich's avatar
    Peter Rotich committed
            <td width="50%">
    
                <table border="0" cellspacing="" cellpadding="4" width="100%">
                    <tr>
    
                        <th width="100"><?php echo __('Status');?>:</th>
    
                        <td><?php echo ($S = $ticket->getStatus()) ? $S->getLocalName() : ''; ?></td>
    
                        <th><?php echo __('Priority');?>:</th>
    
                        <td><?php echo $ticket->getPriority(); ?></td>
                    </tr>
                    <tr>
    
                        <th><?php echo __('Department');?>:</th>
    
                        <td><?php echo Format::htmlchars($ticket->getDeptName()); ?></td>
                    </tr>
                    <tr>
    
                        <th><?php echo __('Create Date');?>:</th>
    
                        <td><?php echo Format::relativeTime($ticket->getCreateDate()); ?></td>
    
            <td width="50%" style="vertical-align:top">
    
                <table border="0" cellspacing="" cellpadding="4" width="100%">
                    <tr>
    
                        <th width="100"><?php echo __('User'); ?>:</th>
    
                        <td><a href="#tickets/<?php echo $ticket->getId(); ?>/user"
    
                            onclick="javascript:
    
                                $.userLookup('ajax.php/tickets/<?php echo $ticket->getId(); ?>/user',
                                        function (user) {
                                            $('#user-'+user.id+'-name').text(user.name);
                                            $('#user-'+user.id+'-email').text(user.email);
    
                                            $('#user-'+user.id+'-phone').text(user.phone);
    
                                            $('select#emailreply option[value=1]').text(user.name+' <'+user.email+'>');
    
                                "><i class="icon-user"></i> <span id="user-<?php echo $ticket->getOwnerId(); ?>-name"
                                ><?php echo Format::htmlchars($ticket->getName());
                            ?></span></a>
    
                            if ($user) { ?>
                                <a href="tickets.php?<?php echo Http::build_query(array(
                                    'status'=>'open', 'a'=>'search', 'uid'=> $user->getId()
                                )); ?>" title="<?php echo __('Related Tickets'); ?>"
                                data-dropdown="#action-dropdown-stats">
                                (<b><?php echo $user->getNumTickets(); ?></b>)
                                </a>
    
                                <div id="action-dropdown-stats" class="action-dropdown anchor-right">
                                    <ul>
                                        <?php
    
    Peter Rotich's avatar
    Peter Rotich committed
                                        if(($open=$user->getNumOpenTickets()))
    
                                            echo sprintf('<li><a href="tickets.php?a=search&status=open&uid=%s"><i class="icon-folder-open-alt icon-fixed-width"></i> %s</a></li>',
    
                                                    $user->getId(), sprintf(_N('%d Open Ticket', '%d Open Tickets', $open), $open));
    
    Peter Rotich's avatar
    Peter Rotich committed
                                        if(($closed=$user->getNumClosedTickets()))
    
                                            echo sprintf('<li><a href="tickets.php?a=search&status=closed&uid=%d"><i
    
                                                    class="icon-folder-close-alt icon-fixed-width"></i> %s</a></li>',
    
                                                    $user->getId(), sprintf(_N('%d Closed Ticket', '%d Closed Tickets', $closed), $closed));
    
                                        <li><a href="tickets.php?a=search&uid=<?php echo $ticket->getOwnerId(); ?>"><i class="icon-double-angle-right icon-fixed-width"></i> <?php echo __('All Tickets'); ?></a></li>
    
    <?php   if ($thisstaff->getRole()->hasPerm(User::PERM_DIRECTORY)) { ?>
    
    Peter Rotich's avatar
    Peter Rotich committed
                                        <li><a href="users.php?id=<?php echo
                                        $user->getId(); ?>"><i class="icon-user
    
                                        icon-fixed-width"></i> <?php echo __('Manage User'); ?></a></li>
    
    <?php   } ?>
                                    </ul>
                                </div>
    <?php   if ($user->getOrgId()) { ?>
                    &nbsp; <span style="display:inline-block">
                        <i class="icon-building"></i>
                        <?php echo Format::htmlchars($user->getOrganization()->getName()); ?>
                            <a href="tickets.php?<?php echo Http::build_query(array(
                                'status'=>'open', 'a'=>'search', 'orgid'=> $user->getOrgId()
                            )); ?>" title="<?php echo __('Related Tickets'); ?>"
                            data-dropdown="#action-dropdown-org-stats">
                            (<b><?php echo $user->getNumOrganizationTickets(); ?></b>)
                            </a>
                        </span>
                                <div id="action-dropdown-org-stats" class="action-dropdown anchor-right">
                                    <ul>
    <?php   if ($open = $user->getNumOpenOrganizationTickets()) { ?>
                                        <li><a href="tickets.php?<?php echo Http::build_query(array(
                                            'a' => 'search', 'status' => 'open', 'orgid' => $user->getOrgId()
                                        )); ?>"><i class="icon-folder-open-alt icon-fixed-width"></i>
                                        <?php echo sprintf(_N('%d Open Ticket', '%d Open Tickets', $open), $open); ?>
                                        </a></li>
    <?php   }
            if ($closed = $user->getNumClosedOrganizationTickets()) { ?>
                                        <li><a href="tickets.php?<?php echo Http::build_query(array(
                                            'a' => 'search', 'status' => 'closed', 'orgid' => $user->getOrgId()
                                        )); ?>"><i class="icon-folder-close-alt icon-fixed-width"></i>
                                        <?php echo sprintf(_N('%d Closed Ticket', '%d Closed Tickets', $closed), $closed); ?>
                                        </a></li>
                                        <li><a href="tickets.php?<?php echo Http::build_query(array(
                                            'a' => 'search', 'orgid' => $user->getOrgId()
                                        )); ?>"><i class="icon-double-angle-right icon-fixed-width"></i> <?php echo __('All Tickets'); ?></a></li>
    <?php   }
            if ($thisstaff->getRole()->hasPerm(User::PERM_DIRECTORY)) { ?>
    
                                        <li><a href="orgs.php?id=<?php echo $user->getOrgId(); ?>"><i
                                            class="icon-building icon-fixed-width"></i> <?php
                                            echo __('Manage Organization'); ?></a></li>
    
    Jared Hancock's avatar
    Jared Hancock committed
                                    </ul>
    
    <?php   } # end if (user->org)
                            } # end if ($user)
    
                        <th><?php echo __('Email'); ?>:</th>
    
                            <span id="user-<?php echo $ticket->getOwnerId(); ?>-email"><?php echo $ticket->getEmail(); ?></span>
    
                        <th><?php echo __('Phone'); ?>:</th>
    
                        <td>
                            <span id="user-<?php echo $ticket->getOwnerId(); ?>-phone"><?php echo $ticket->getPhoneNumber(); ?></span>
                        </td>
    
                        <th><?php echo __('Source'); ?>:</th>
    
                        <td><?php
    
                            echo Format::htmlchars($ticket->getSource());
    
                            if($ticket->getIP())
                                echo '&nbsp;&nbsp; <span class="faded">('.$ticket->getIP().')</span>';
                            ?>
                        </td>
    
                    </tr>
                </table>
            </td>
        </tr>
    </table>
    <br>
    <table class="ticket_info" cellspacing="0" cellpadding="0" width="940" border="0">
        <tr>
            <td width="50%">
                <table cellspacing="0" cellpadding="4" width="100%" border="0">
                    <?php
                    if($ticket->isOpen()) { ?>
                    <tr>
    
                        <th width="100"><?php echo __('Assigned To');?>:</th>
    
                        <td>
                            <?php
                            if($ticket->isAssigned())
                                echo Format::htmlchars(implode('/', $ticket->getAssignees()));
                            else
    
                                echo '<span class="faded">&mdash; '.__('Unassigned').' &mdash;</span>';
    
                        <th width="100"><?php echo __('Closed By');?>:</th>
    
                        <td>
                            <?php
                            if(($staff = $ticket->getStaff()))
                                echo Format::htmlchars($staff->getName());
                            else
    
                                echo '<span class="faded">&mdash; '.__('Unknown').' &mdash;</span>';
    
                        <th><?php echo __('SLA Plan');?>:</th>
    
                        <td><?php echo $sla?Format::htmlchars($sla->getName()):'<span class="faded">&mdash; '.__('None').' &mdash;</span>'; ?></td>
    
                        <th><?php echo __('Due Date');?>:</th>
    
                        <td><?php echo Format::datetime($ticket->getEstDueDate()); ?></td>
    
                        <th><?php echo __('Close Date');?>:</th>
    
                        <td><?php echo Format::datetime($ticket->getCloseDate()); ?></td>
    
                    </tr>
                    <?php
                    }
                    ?>
                </table>
            </td>
            <td width="50%">
                <table cellspacing="0" cellpadding="4" width="100%" border="0">
                    <tr>
    
                        <th width="100"><?php echo __('Help Topic');?>:</th>
    
                        <td><?php echo Format::htmlchars($ticket->getHelpTopic()); ?></td>
                    </tr>
                    <tr>
    
                        <th nowrap><?php echo __('Last Message');?>:</th>
    
                        <td><?php echo Format::datetime($ticket->getLastMsgDate()); ?></td>
    
                        <th nowrap><?php echo __('Last Response');?>:</th>
    
                        <td><?php echo Format::datetime($ticket->getLastRespDate()); ?></td>
    
    Jared Hancock's avatar
    Jared Hancock committed
    <br>
    <table class="ticket_info" cellspacing="0" cellpadding="0" width="940" border="0">
    <?php
    $idx = 0;
    foreach (DynamicFormEntry::forTicket($ticket->getId()) as $form) {
        // Skip core fields shown earlier in the ticket view
        // TODO: Rewrite getAnswers() so that one could write
        //       ->getAnswers()->filter(not(array('field__name__in'=>
        //           array('email', ...))));
    
        $answers = $form->getAnswers()->exclude(Q::any(array(
            'field__flags__hasbit' => DynamicFormField::FLAG_EXT_STORED,
            'field__name__in' => array('subject', 'priority')
        )));
    
    Jared Hancock's avatar
    Jared Hancock committed
        if (count($answers) == 0)
            continue;
        ?>
    
    Jared Hancock's avatar
    Jared Hancock committed
            <tr>
    
    Jared Hancock's avatar
    Jared Hancock committed
            <td colspan="2">
                <table cellspacing="0" cellpadding="4" width="100%" border="0">
    
                <?php foreach($answers as $a) {
    
                    if (!($v = $a->display())) continue; ?>
    
    Jared Hancock's avatar
    Jared Hancock committed
                    <tr>
                        <th width="100"><?php
    
        echo $a->getLocal('label');
    
    Jared Hancock's avatar
    Jared Hancock committed
                        ?>:</th>
                        <td><?php
    
    Jared Hancock's avatar
    Jared Hancock committed
                        ?></td>
                    </tr>
                    <?php } ?>
                </table>
            </td>
    
    Jared Hancock's avatar
    Jared Hancock committed
            </tr>
    
    Jared Hancock's avatar
    Jared Hancock committed
        <?php
        $idx++;
        } ?>
    </table>
    
    <div class="clear"></div>
    <h2 style="padding:10px 0 5px 0; font-size:11pt;"><?php echo Format::htmlchars($ticket->getSubject()); ?></h2>
    
    $tcount = $ticket->getThreadEntries($types)->count();
    
    <ul  class="tabs threads" id="ticket_tabs" >
    
        <li class="active"><a href="#ticket_thread"><?php echo sprintf(__('Ticket Thread (%d)'), $tcount); ?></a></li>
        <li><a id="ticket_tasks" href="#tasks"
                data-url="<?php
    
            echo sprintf('#tickets/%d/tasks', $ticket->getId()); ?>"><?php
            echo __('Tasks');
            if ($ticket->getNumTasks())
                echo sprintf('&nbsp;(%d)', $ticket->getNumTasks());
            ?></a></li>
    
    Jared Hancock's avatar
    Jared Hancock committed
    <div id="ticket_tabs_container">
    
        <div id="ticket_thread" data-thread-id="<?php echo $ticket->getThread()->getId(); ?>" class="tab_content">
    
        $ticket->getThread()->render(array('M', 'R', 'N'));
        ?>
    
    <div class="clear" style="padding-bottom:10px;"></div>
    <?php if($errors['err']) { ?>
        <div id="msg_error"><?php echo $errors['err']; ?></div>
    <?php }elseif($msg) { ?>
        <div id="msg_notice"><?php echo $msg; ?></div>
    <?php }elseif($warn) { ?>
        <div id="msg_warning"><?php echo $warn; ?></div>
    <?php } ?>
    
    
    <div class="sticky bar stop" id="response_options">
    
            if ($role->hasPerm(TicketModel::PERM_REPLY)) { ?>
    
    Jared Hancock's avatar
    Jared Hancock committed
            <li class="active"><a href="#reply"><?php echo __('Post Reply');?></a></li>
    
            <li><a href="#note"><?php echo __('Post Internal Note');?></a></li>
    
            if ($role->hasPerm(TicketModel::PERM_TRANSFER)) { ?>
    
    Jared Hancock's avatar
    Jared Hancock committed
            <li><a href="#transfer"><?php echo __('Department Transfer');?></a></li>
    
            if ($role->hasPerm(TicketModel::PERM_ASSIGN)) { ?>
    
    Jared Hancock's avatar
    Jared Hancock committed
            <li><a href="#assign"><?php
                echo $ticket->isAssigned()?__('Reassign Ticket'):__('Assign Ticket'); ?></a></li>
    
        if ($role->hasPerm(TicketModel::PERM_REPLY)) { ?>
    
        <form id="reply" class="tab_content spellcheck" action="tickets.php?id=<?php
    
    Jared Hancock's avatar
    Jared Hancock committed
            echo $ticket->getId(); ?>" name="reply" method="post" enctype="multipart/form-data">
    
            <?php csrf_token(); ?>
            <input type="hidden" name="id" value="<?php echo $ticket->getId(); ?>">
            <input type="hidden" name="msgId" value="<?php echo $msgId; ?>">
            <input type="hidden" name="a" value="reply">
    
            <input type="hidden" name="lockCode" value="<?php echo ($mylock) ? $mylock->getCode() : ''; ?>">
    
            <table style="width:100%" border="0" cellspacing="0" cellpadding="3">
    
                    <td width="120">
    
                        <label><strong><?php echo __('To'); ?>:</strong></label>
    
    Peter Rotich's avatar
    Peter Rotich committed
                        <?php
    
                        # XXX: Add user-to-name and user-to-email HTML ID#s
    
                        $to =sprintf('%s &lt;%s&gt;',
                                Format::htmlchars($ticket->getName()),
                                $ticket->getReplyToEmail());
    
                        $emailReply = (!isset($info['emailreply']) || $info['emailreply']);
    
    Peter Rotich's avatar
    Peter Rotich committed
                        ?>
    
                        <select id="emailreply" name="emailreply">
                            <option value="1" <?php echo $emailReply ?  'selected="selected"' : ''; ?>><?php echo $to; ?></option>
                            <option value="0" <?php echo !$emailReply ? 'selected="selected"' : ''; ?>
    
                            >&mdash; <?php echo __('Do Not Email Reply'); ?> &mdash;</option>
    
    Peter Rotich's avatar
    Peter Rotich committed
                if(1) { //Make CC optional feature? NO, for now.
                    ?>
    
                <tbody id="cc_sec"
                    style="display:<?php echo $emailReply?  'table-row-group':'none'; ?>;">
                 <tr>
    
    Peter Rotich's avatar
    Peter Rotich committed
                    <td width="120">
    
                        <label><strong><?php echo __('Collaborators'); ?>:</strong></label>
    
    Peter Rotich's avatar
    Peter Rotich committed
                    </td>
                    <td>
    
                        <input type='checkbox' value='1' name="emailcollab" id="emailcollab"
                            <?php echo ((!$info['emailcollab'] && !$errors) || isset($info['emailcollab']))?'checked="checked"':''; ?>
    
                            style="display:<?php echo $ticket->getThread()->getNumCollaborators() ? 'inline-block': 'none'; ?>;"
    
    Peter Rotich's avatar
    Peter Rotich committed
                        <?php
    
                        $recipients = __('Add Recipients');
    
                        if ($ticket->getThread()->getNumCollaborators())
    
                            $recipients = sprintf(__('Recipients (%d of %d)'),
    
                                    $ticket->getThread()->getNumActiveCollaborators(),
                                    $ticket->getThread()->getNumCollaborators());
    
                        echo sprintf('<span><a class="collaborators preview"
    
                                href="#thread/%d/collaborators"><span id="t%d-recipients">%s</span></a></span>',
                                $ticket->getThreadId(),
                                $ticket->getThreadId(),
    
                                $recipients);
    
    Peter Rotich's avatar
    Peter Rotich committed
                       ?>
                    </td>
    
    Peter Rotich's avatar
    Peter Rotich committed
                </tbody>
                <?php
                } ?>
                <tbody id="resp_sec">
                <?php
    
    Peter Rotich's avatar
    Peter Rotich committed
                if($errors['response']) {?>
    
                <tr><td width="120">&nbsp;</td><td class="error"><?php echo $errors['response']; ?>&nbsp;</td></tr>
    
    Peter Rotich's avatar
    Peter Rotich committed
                <?php
    
                    <td width="120" style="vertical-align:top">
    
                        <label><strong><?php echo __('Response');?>:</strong></label>
    
    <?php if ($cfg->isCannedResponseEnabled()) { ?>
    
                        <select id="cannedResp" name="cannedResp">
    
                            <option value="0" selected="selected"><?php echo __('Select a canned response');?></option>
    
                            <option value='original'><?php echo __('Original Message'); ?></option>
                            <option value='lastmessage'><?php echo __('Last Message'); ?></option>
    
                            <?php
                            if(($cannedResponses=Canned::responsesByDeptId($ticket->getDeptId()))) {
                                echo '<option value="0" disabled="disabled">
    
                                    ------------- '.__('Premade Replies').' ------------- </option>';
    
                                foreach($cannedResponses as $id =>$title)
    
    Peter Rotich's avatar
    Peter Rotich committed
                                    echo sprintf('<option value="%d">%s</option>',$id,$title);
    
    <?php } # endif (canned-resonse-enabled)
    
                        $signature = '';
                        switch ($thisstaff->getDefaultSignatureType()) {
                        case 'dept':
                            if ($dept && $dept->canAppendSignature())
                               $signature = $dept->getSignature();
                           break;
                        case 'mine':
                            $signature = $thisstaff->getSignature();
                            break;
                        } ?>
    
                        <input type="hidden" name="draft_id" value=""/>
                        <textarea name="response" id="response" cols="50"
    
                            data-signature-field="signature" data-dept-id="<?php echo $dept->getId(); ?>"
                            data-signature="<?php
                                echo Format::htmlchars(Format::viewableImages($signature)); ?>"
    
                            placeholder="<?php echo __(
                            'Start writing your response here. Use canned responses from the drop-down above'
                            ); ?>"
    
                            class="<?php if ($cfg->isHtmlThreadEnabled()) echo 'richtext';
                                ?> draft draft-delete" <?php
        list($draft, $attrs) = Draft::getDraftAndDataAttrs('ticket.response', $ticket->getId(), $info['response']);
        echo $attrs; ?>><?php echo $draft ?: $info['response'];
                        ?></textarea>
    
                    <div id="reply_form_attachments" class="attachments">
    
                    <?php
                        print $response_form->getField('attachments')->render();
                    ?>
    
                    <td width="120">
    
                        <label for="signature" class="left"><?php echo __('Signature');?>:</label>
    
                        <?php
                        $info['signature']=$info['signature']?$info['signature']:$thisstaff->getDefaultSignatureType();
                        ?>
    
                        <label><input type="radio" name="signature" value="none" checked="checked"> <?php echo __('None');?></label>
    
                        <?php
                        if($thisstaff->getSignature()) {?>
                        <label><input type="radio" name="signature" value="mine"
    
                            <?php echo ($info['signature']=='mine')?'checked="checked"':''; ?>> <?php echo __('My Signature');?></label>
    
                        <?php
                        } ?>
                        <?php
                        if($dept && $dept->canAppendSignature()) { ?>
                        <label><input type="radio" name="signature" value="dept"
                            <?php echo ($info['signature']=='dept')?'checked="checked"':''; ?>>
    
                            <?php echo sprintf(__('Department Signature (%s)'), Format::htmlchars($dept->getName())); ?></label>
    
                    <td width="120" style="vertical-align:top">
    
                        <label><strong><?php echo __('Ticket Status');?>:</strong></label>
    
                        <?php
                        if ($outstanding = $ticket->getMissingRequiredFields()) { ?>
                        <div class="warning-banner"><?php echo sprintf(__(
                            'This ticket is missing data on %s one or more required fields %s and cannot be closed'),
                            "<a href=\"tickets.php?id={$ticket->getId()}&a=edit\">",
                            '</a>'
                        ); ?></div>
    <?php               } ?>
    
                        <select name="reply_status_id">
    
                        $statusId = $info['reply_status_id'] ?: $ticket->getStatusId();
    
                        $states = array('open');
    
                        if ($role->hasPerm(TicketModel::PERM_CLOSE) && !$outstanding)
    
    Peter Rotich's avatar
    Peter Rotich committed
                            $states = array_merge($states, array('closed'));
    
                        foreach (TicketStatusList::getStatuses(
                                    array('states' => $states)) as $s) {
    
                            if (!$s->isEnabled()) continue;
    
                            $selected = ($statusId == $s->getId());
                            echo sprintf('<option value="%d" %s>%s%s</option>',
    
                                    $s->getId(),
    
                                     ? 'selected="selected"' : '',
    
                                    __($s->getName()),
    
                                    $selected
                                    ? (' ('.__('current').')') : ''
    
    Peter Rotich's avatar
    Peter Rotich committed
             </tbody>
    
            <p  style="padding:0 165px;">
    
                <input class="btn_sm" type="submit" value="<?php echo __('Post Reply');?>">
                <input class="btn_sm" type="reset" value="<?php echo __('Reset');?>">
    
        <form id="note" class="hidden tab_content spellcheck" action="tickets.php?id=<?php
    
            echo $ticket->getId(); ?>#note" name="note" method="post" enctype="multipart/form-data">
    
            <?php csrf_token(); ?>
            <input type="hidden" name="id" value="<?php echo $ticket->getId(); ?>">
    
            <input type="hidden" name="locktime" value="<?php echo $cfg->getLockTime() * 60; ?>">
    
            <input type="hidden" name="a" value="postnote">
    
            <input type="hidden" name="lockCode" value="<?php echo ($mylock) ? $mylock->getCode() : ''; ?>">
    
            <table width="100%" border="0" cellspacing="0" cellpadding="3">
    
                <?php
    
                if($errors['postnote']) {?>
    
                    <td width="120">&nbsp;</td>
    
    Peter Rotich's avatar
    Peter Rotich committed
                    <td class="error"><?php echo $errors['postnote']; ?></td>
    
    Peter Rotich's avatar
    Peter Rotich committed
                <?php
                } ?>
    
                    <td width="120" style="vertical-align:top">
    
                        <label><strong><?php echo __('Internal Note'); ?>:</strong><span class='error'>&nbsp;*</span></label>
    
                            <div class="faded" style="padding-left:0.15em"><?php
                            echo __('Note title - summary of the note (optional)'); ?></div>
    
                            <input type="text" name="title" id="title" size="60" value="<?php echo $info['title']; ?>" >
                            <br/>
    
    Jared Hancock's avatar
    Jared Hancock committed
                            <span class="error">&nbsp;<?php echo $errors['title']; ?></span>
    
                        <div class="error"><?php echo $errors['note']; ?></div>
    
                        <textarea name="note" id="internal_note" cols="80"
    
                            placeholder="<?php echo __('Note details'); ?>"
    
                            rows="9" wrap="soft"
                            class="<?php if ($cfg->isHtmlThreadEnabled()) echo 'richtext';
                                ?> draft draft-delete" <?php
        list($draft, $attrs) = Draft::getDraftAndDataAttrs('ticket.note', $ticket->getId(), $info['note']);
        echo $attrs; ?>><?php echo $draft ?: $info['note'];
    
                            ?></textarea>
    
                    <div class="attachments">
    
                    <?php
                        print $note_form->getField('attachments')->render();
                    ?>
    
    Peter Rotich's avatar
    Peter Rotich committed
                <tr><td colspan="2">&nbsp;</td></tr>
    
                    <td width="120">
    
                        <label><?php echo __('Ticket Status');?>:</label>
    
    Peter Rotich's avatar
    Peter Rotich committed
                        <div class="faded"></div>
    
                        <select name="note_status_id">
    
    Peter Rotich's avatar
    Peter Rotich committed
                            <?php
    
                            $statusId = $info['note_status_id'] ?: $ticket->getStatusId();
    
                            $states = array('open');
    
                            if ($role->hasPerm(TicketModel::PERM_CLOSE))
    
    Peter Rotich's avatar
    Peter Rotich committed
                                $states = array_merge($states, array('closed'));
    
                            foreach (TicketStatusList::getStatuses(
                                        array('states' => $states)) as $s) {
    
                                if (!$s->isEnabled()) continue;
    
                                $selected = $statusId == $s->getId();
    
                                echo sprintf('<option value="%d" %s>%s%s</option>',
    
                                        $s->getId(),
    
                                        $selected ? 'selected="selected"' : '',
    
                                        __($s->getName()),
    
                                        $selected ? (' ('.__('current').')') : ''
    
    Peter Rotich's avatar
    Peter Rotich committed
                        </select>
    
                        &nbsp;<span class='error'>*&nbsp;<?php echo $errors['note_status_id']; ?></span>
    
                    </td>
                </tr>
            </table>
    
           <p  style="padding-left:165px;">
    
               <input class="btn_sm" type="submit" value="<?php echo __('Post Note');?>">
               <input class="btn_sm" type="reset" value="<?php echo __('Reset');?>">
    
        if ($role->hasPerm(TicketModel::PERM_TRANSFER)) { ?>
    
        <form id="transfer" class="hidden tab_content spellcheck" action="tickets.php?id=<?php
    
    Jared Hancock's avatar
    Jared Hancock committed
            echo $ticket->getId(); ?>#transfer" name="transfer" method="post" enctype="multipart/form-data">
    
            <?php csrf_token(); ?>
            <input type="hidden" name="ticket_id" value="<?php echo $ticket->getId(); ?>">
            <input type="hidden" name="a" value="transfer">
    
            <table width="100%" border="0" cellspacing="0" cellpadding="3">
    
    Peter Rotich's avatar
    Peter Rotich committed
                <?php
                if($errors['transfer']) {
                    ?>
    
                    <td width="120">&nbsp;</td>
    
                    <td class="error"><?php echo $errors['transfer']; ?></td>
                </tr>
    
    Peter Rotich's avatar
    Peter Rotich committed
                <?php
                } ?>
    
                    <td width="120">
    
                        <label for="deptId"><strong><?php echo __('Department');?>:</strong></label>
    
    Peter Rotich's avatar
    Peter Rotich committed
                        <?php
    
                            echo sprintf('<span class="faded">'.__('Ticket is currently in <b>%s</b> department.').'</span>', $ticket->getDeptName());
    
    Peter Rotich's avatar
    Peter Rotich committed
                        ?>
                        <br>
    
                        <select id="deptId" name="deptId">
    
                            <option value="0" selected="selected">&mdash; <?php echo __('Select Target Department');?> &mdash;</option>
    
                            <?php
                            if($depts=Dept::getDepartments()) {
                                foreach($depts as $id =>$name) {
                                    if($id==$ticket->getDeptId()) continue;
                                    echo sprintf('<option value="%d" %s>%s</option>',
                                            $id, ($info['deptId']==$id)?'selected="selected"':'',$name);
                                }
                            }
                            ?>
                        </select>&nbsp;<span class='error'>*&nbsp;<?php echo $errors['deptId']; ?></span>
                    </td>
                </tr>
                <tr>
    
                    <td width="120" style="vertical-align:top">
    
                        <label><strong><?php echo __('Comments'); ?>:</strong><span class='error'>&nbsp;*</span></label>
    
    Peter Rotich's avatar
    Peter Rotich committed
                        <textarea name="transfer_comments" id="transfer_comments"
    
                            placeholder="<?php echo __('Enter reasons for the transfer'); ?>"
    
                            class="<?php if ($cfg->isHtmlThreadEnabled()) echo 'richtext';
                                ?> no-bar" cols="80" rows="7" wrap="soft"><?php
    
                            echo $info['transfer_comments']; ?></textarea>
    
                        <span class="error"><?php echo $errors['transfer_comments']; ?></span>
    
                    </td>
                </tr>
            </table>
            <p style="padding-left:165px;">
    
               <input class="btn_sm" type="submit" value="<?php echo __('Transfer');?>">
               <input class="btn_sm" type="reset" value="<?php echo __('Reset');?>">
    
        if ($role->hasPerm(TicketModel::PERM_ASSIGN)) { ?>
    
        <form id="assign" class="hidden tab_content spellcheck" action="tickets.php?id=<?php
    
    Jared Hancock's avatar
    Jared Hancock committed
             echo $ticket->getId(); ?>#assign" name="assign" method="post" enctype="multipart/form-data">
    
            <?php csrf_token(); ?>
            <input type="hidden" name="id" value="<?php echo $ticket->getId(); ?>">
            <input type="hidden" name="a" value="assign">
    
            <table style="width:100%" border="0" cellspacing="0" cellpadding="3">
    
    Peter Rotich's avatar
    Peter Rotich committed
                <?php
                if($errors['assign']) {
                    ?>
    
                    <td width="120">&nbsp;</td>
    
    Peter Rotich's avatar
    Peter Rotich committed
                    <td class="error"><?php echo $errors['assign']; ?></td>
    
    Peter Rotich's avatar
    Peter Rotich committed
                <?php
                } ?>
    
                    <td width="120" style="vertical-align:top">
    
                        <label for="assignId"><strong><?php echo __('Assignee');?>:</strong></label>
    
                        <select id="assignId" name="assignId">
    
                            <option value="0" selected="selected">&mdash; <?php echo __('Select an Agent OR a Team');?> &mdash;</option>
    
    Peter Rotich's avatar
    Peter Rotich committed
                            if ($ticket->isOpen()
                                    && !$ticket->isAssigned()
                                    && $ticket->getDept()->isMember($thisstaff))
    
                                echo sprintf('<option value="%d">'.__('Claim Ticket (comments optional)').'</option>', $thisstaff->getId());
    
    Peter Rotich's avatar
    Peter Rotich committed
    
    
    
                            if ($dept->assignMembersOnly())
                                $users = $dept->getAvailableMembers();
                            else
                                $users = Staff::getAvailableStaffMembers();
    
                            if ($users) {
    
                                echo '<OPTGROUP label="'.sprintf(__('Agents (%d)'), count($users)).'">';
    
                                $staffId=$ticket->isAssigned()?$ticket->getStaffId():0;
                                foreach($users as $id => $name) {
                                    if($staffId && $staffId==$id)
    
    Peter Rotich's avatar
    Peter Rotich committed
                                        continue;
    
                                    if (!is_object($name))
                                        $name = new PersonsName($name);
    
    
                                    $k="s$id";
                                    echo sprintf('<option value="%s" %s>%s</option>',
    
                                            $k,(($info['assignId']==$k)?'selected="selected"':''), $name);
    
                                }
                                echo '</OPTGROUP>';
                            }
    
                            if(($teams=Team::getActiveTeams())) {
    
                                echo '<OPTGROUP label="'.sprintf(__('Teams (%d)'), count($teams)).'">';
    
                                $teamId=(!$sid && $ticket->isAssigned())?$ticket->getTeamId():0;
                                foreach($teams as $id => $name) {
                                    if($teamId && $teamId==$id)
    
    Peter Rotich's avatar
    Peter Rotich committed
                                        continue;
    
    
                                    $k="t$id";
                                    echo sprintf('<option value="%s" %s>%s</option>',
                                            $k,(($info['assignId']==$k)?'selected="selected"':''),$name);
                                }
                                echo '</OPTGROUP>';
                            }
                            ?>
                        </select>&nbsp;<span class='error'>*&nbsp;<?php echo $errors['assignId']; ?></span>
    
                        if ($ticket->isAssigned() && $ticket->isOpen()) { ?>
    
                            <div class="faded"><?php echo sprintf(__('Ticket is currently assigned to %s'),
    
                                sprintf('<b>%s</b>', $ticket->getAssignee())); ?></div> <?php
    
                        } elseif ($ticket->isClosed()) { ?>
    
                            <div class="faded"><?php echo __('Assigning a closed ticket will <b>reopen</b> it!'); ?></div>
    
                    <td width="120" style="vertical-align:top">
    
                        <label><strong><?php echo __('Comments');?>:</strong><span class='error'>&nbsp;</span></label>
    
                    <td>
                        <textarea name="assign_comments" id="assign_comments"
                            cols="80" rows="7" wrap="soft"
    
                            placeholder="<?php echo __('Enter reasons for the assignment or instructions for assignee'); ?>"
    
                            class="<?php if ($cfg->isHtmlThreadEnabled()) echo 'richtext';
                                ?> no-bar"><?php echo $info['assign_comments']; ?></textarea>
    
                        <span class="error"><?php echo $errors['assign_comments']; ?></span><br>
    
                    </td>
                </tr>
            </table>
            <p  style="padding-left:165px;">
    
                <input class="btn_sm" type="submit" value="<?php echo $ticket->isAssigned()?__('Reassign'):__('Assign'); ?>">
                <input class="btn_sm" type="reset" value="<?php echo __('Reset');?>">
    
    </div>
    <div style="display:none;" class="dialog" id="print-options">
    
        <h3><?php echo __('Ticket Print Options');?></h3>
    
        <a class="close" href=""><i class="icon-remove-circle"></i></a>
    
        <hr/>
        <form action="tickets.php?id=<?php echo $ticket->getId(); ?>" method="post" id="print-form" name="print-form">
            <?php csrf_token(); ?>
            <input type="hidden" name="a" value="print">
            <input type="hidden" name="id" value="<?php echo $ticket->getId(); ?>">
            <fieldset class="notes">
    
                <label class="fixed-size" for="notes"><?php echo __('Print Notes');?>:</label>
    
                <input type="checkbox" id="notes" name="notes" value="1"> <?php echo __('Print <b>Internal</b> Notes/Comments');?>
    
                <label class="fixed-size" for="psize"><?php echo __('Paper Size');?>:</label>
    
                    <option value="">&mdash; <?php echo __('Select Print Paper Size');?> &mdash;</option>
    
                    <?php
                      $psize =$_SESSION['PAPER_SIZE']?$_SESSION['PAPER_SIZE']:$thisstaff->getDefaultPaperSize();
    
                      foreach(Export::$paper_sizes as $v) {
    
                          echo sprintf('<option value="%s" %s>%s</option>',
    
                                    $v,($psize==$v)?'selected="selected"':'', __($v));
    
                      }
                    ?>
                </select>
            </fieldset>
            <hr style="margin-top:3em"/>
            <p class="full-width">
    
                <span class="buttons pull-left">
    
                    <input type="reset" value="<?php echo __('Reset');?>">
                    <input type="button" value="<?php echo __('Cancel');?>" class="close">
    
                <span class="buttons pull-right">
    
                    <input type="submit" value="<?php echo __('Print');?>">
    
                </span>
             </p>
        </form>
        <div class="clear"></div>
    </div>
    <div style="display:none;" class="dialog" id="confirm-action">
    
        <h3><?php echo __('Please Confirm');?></h3>
    
        <a class="close" href=""><i class="icon-remove-circle"></i></a>
    
        <hr/>
        <p class="confirm-action" style="display:none;" id="claim-confirm">
    
            <?php echo __('Are you sure you want to <b>claim</b> (self assign) this ticket?');?>
    
        </p>
        <p class="confirm-action" style="display:none;" id="answered-confirm">
    
            <?php echo __('Are you sure you want to flag the ticket as <b>answered</b>?');?>
    
        <p class="confirm-action" style="display:none;" id="unanswered-confirm">
    
            <?php echo __('Are you sure you want to flag the ticket as <b>unanswered</b>?');?>
    
        </p>
        <p class="confirm-action" style="display:none;" id="overdue-confirm">
    
            <?php echo __('Are you sure you want to flag the ticket as <font color="red"><b>overdue</b></font>?');?>
    
        </p>
        <p class="confirm-action" style="display:none;" id="banemail-confirm">
    
            <?php echo sprintf(__('Are you sure you want to <b>ban</b> %s?'), $ticket->getEmail());?> <br><br>
            <?php echo __('New tickets from the email address will be automatically rejected.');?>
    
        </p>
        <p class="confirm-action" style="display:none;" id="unbanemail-confirm">
    
            <?php echo sprintf(__('Are you sure you want to <b>remove</b> %s from ban list?'), $ticket->getEmail()); ?>
    
        </p>
        <p class="confirm-action" style="display:none;" id="release-confirm">
    
            <?php echo sprintf(__('Are you sure you want to <b>unassign</b> ticket from <b>%s</b>?'), $ticket->getAssigned()); ?>
    
        <p class="confirm-action" style="display:none;" id="changeuser-confirm">
    
            <span id="msg_warning" style="display:block;vertical-align:top">
    
            <?php echo sprintf(Format::htmlchars(__('%s <%s> will longer have access to the ticket')),
    
                '<b>'.Format::htmlchars($ticket->getName()).'</b>', Format::htmlchars($ticket->getEmail())); ?>
    
            <?php echo sprintf(__('Are you sure you want to <b>change</b> ticket owner to %s?'),
    
                '<b><span id="newuser">this guy</span></b>'); ?>
    
        <p class="confirm-action" style="display:none;" id="delete-confirm">
    
            <font color="red"><strong><?php echo __('Are you sure you want to DELETE this ticket?');?></strong></font>
    
            <br><br><?php echo __('Deleted data CANNOT be recovered, including any associated attachments.');?>
    
        <div><?php echo __('Please confirm to continue.');?></div>
    
        <form action="tickets.php?id=<?php echo $ticket->getId(); ?>" method="post" id="confirm-form" name="confirm-form">
            <?php csrf_token(); ?>
            <input type="hidden" name="id" value="<?php echo $ticket->getId(); ?>">
            <input type="hidden" name="a" value="process">
            <input type="hidden" name="do" id="action" value="">
            <hr style="margin-top:1em"/>
            <p class="full-width">
    
                <span class="buttons pull-left">
    
                    <input type="button" value="<?php echo __('Cancel');?>" class="close">
    
                <span class="buttons pull-right">
    
                    <input type="submit" value="<?php echo __('OK');?>">