Jump to content

Recommended Posts

Posted

It would be nice to have the client listed for each ticket.  Possibly between priority and department.  It can get a bit confusing if a lot of tickets are open and this would make it easier to glance at them vs. opening each up one by one.

Posted

You can see them when you open the ticket though and on the last reply.

I know but if you just want to quickly glance through them to see what you have to deal with, it would be much easier to have the clients name listed right there.  I don't think it would be too hard to add and I may work on doing it.  I think I can figure it out.

Posted

Yes, something along these lines.  I think you're using the free Pro version, right?

 

I'm using an exclusive/proprietary and highly customized version that I am paying for custom development on, of Pro with a ton of features/enhancements and more coming as quickly as Paulo gets them done.

Posted

If the ticket is emailed in, there may not be a client. We can display the email address that created the ticket instead, though, like the last reply currently does.

That would work.  I've tried using the code used in admin_tickets_reply.pdt and it pulls the email address but it's blank on many of them.  I'm missing something to call the client ID and haven't figured it out yet.

Modifying the language file for the header was easy to do.

 

This is what I tried using without success:

<td>
                                <?php
                                if (!empty($client)) {
                                ?>
                                <a href="<?php echo $this->Html->safe($this->base_uri . "clients/view/" . $this->Html->ifSet($client->id) . "/");?>"><?php echo $this->Html->concat(" ", $this->Html->safe($client->first_name), $this->Html->safe($client->last_name));?></a>
                                <?php
                                }
                                elseif (!empty($ticket->email)) {
                                ?>
                                <a href="mailto:<?php $this->Html->_($ticket->email);?>"><?php $this->Html->_($ticket->email);?></a>
                                <?php
                                }
                                ?>
                            </td>
Posted

The ticket listing page probably doesn't make the client's name available for each ticket. You would need to update the controller to fetch each client yourself before they would be available to the template.

Posted

For any one asking :P

Yes im helping on this "giant" custumisation based on my Support Manager Pro Plugin mode :P

Lots and lots of features, its the best weel coded support manager pro i have (still working on it), made for now :)

+ 1 for this features, its easy to implement :)

Posted

The ticket listing page probably doesn't make the client's name available for each ticket. You would need to update the controller to fetch each client yourself before they would be available to the template.

I figured that was the case.  I'm guessing this isn't something that you guys want to have added to the core?

Posted

 

I wouldn't mind including a column for the client's name (or email, if unknown).

 

e.g.

Assigned To
John Doe
email@abc_xyz.com

 

I was talking to him about a tooltip on the ticket ID with the client name if it's known :)

Posted

I was talking to him about a tooltip on the ticket ID with the client name if it's known :)

I honestly think there is plenty of room to add one more column in this table.  Just my opinion.

Posted

 

I wouldn't mind including a column for the client's name (or email, if unknown).

 

e.g.

Assigned To
John Doe
email@abc_xyz.com

If I can figure out the code for the controller, I can post it all here and you can make sure it meets Blesta standards.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...