Hello. We plan to use Osticket and have a big screen in the support room so everyone can see how the proccess is going.I have a problem with the standard tiket view (wich we plan to use as the main view). It only shows open tickets but don't show the status. We would like to have a screen like the main articdesk one (attached)blankIs there a way to do so?

tickets.png

I am assuming something like how I have modified ours? blankI modified it a little to include the status which can be changed by staff members.  I would be happy to post the changes I made to the ticket and ticket view.

Ticket Queue.jpg

looks great! How does it filter and order tickets? I assume it doesn't show closed ones

Closed tickets are set in a separate queue, which can be accessed by either searching (it will show open tickets on top and closed tickets on bottom) or by clicking on the Closed Tickets sub-menu.  Filtering tickets by default is by ticket date.  I changed mine to sort by building and then by ticket status.

Yeah, that's right for us

Hello Rowland! Were you able to post the changes?

I am in the process of marking were I changed everything.  I will get back to you soon!Andy

Hello,here are my simple customizations for a job:

1AACL.png

  • Acrg replied to this.

    Great. Very informative. With  a little CSS it could be more eye catching. And also it could use the "2 hours ago" style instead of date/time. There is a little JS library that does the trickhttp://ksylvest.github.io/jquery-age/

    Don't think so, they seem pretty clear. I'll modify my installation tomorrow and let you know.Thanks

    any here that can help me and explain where i can find this number ? Database Setup/Prep Once the status list is set up, we will begin by finding some information in the database that we will need later on. It is important to do this step after setting up the custom list and adding the field to the form so that you can get the values you need.  The first value we need is your Field ID, which will be used in the set_ticket_status() function, in class.ticket.php. 

    Sure, you need to access the database to find this information.  Once you log into your database, navigate to the table ost_form_field which houses all of the custom fields in OS Ticket.  What ever name you gave the field in the steps above, look for that name.  Here is what you are looking for.  Let me know if that doesn't help you.

    BTW Rownland, the instructions worked very well! We are changing the Css, let you know when it's done. Thank you very much!

    Thank you. we figured everything out... with a few spesial ediths we got everything to work.Thank you for the help. 

    Moving this thread to the mods section.

    Rownland,

    This is a great MOD. I just set it up on v1.8.0.1.

    I have a few questions. I am having trouble updating the status in the ticket screen. When I select the new status and then click on the "Update Status" button, I am receiving a "You must select action to perform" error. I am sure I am missing something, but was wondering if anyone else ran into this problem.

    Also where is the function that you describe in this section of your instructions:

    In the ticket create() function, we need to add a line of code at the end to set the status on the ticket creation. Right above , add the following line:

    //Add status to the ticket

    $ticket->setTicketStatus(26, 1); 

    Rownland,

    This is a great MOD. I just set it up on v1.8.0.1.

    I have a few questions. I am having trouble updating the status in the ticket screen. When I select the new status and then click on the "Update Status" button, I am receiving a "You must select action to perform" error. I am sure I am missing something, but was wondering if anyone else ran into this problem.

    Also where is the function that you describe in this section of your instructions:

    In the ticket create() function, we need to add a line of code at the end to set the status on the ticket creation. Right above return $ticket;, add the following line:

    //Add status to the ticket $ticket->setTicketStatus(26, 1); 

    First off, for the function, you need to split that line in half to look like this://Add status to the ticket $ticket->setTicketStatus(26, 1); As for the Update, it sounds like an issue with scp->tickets.php. In this file, you need to add the status update case.  Find:Under this switch, add the following case statement:  case 'set_simple_status':    if(!$thisstaff->canManageTickets()){      $errors='Perm. Denied. You are not allowed change the status.';    }    if(!$errors){      $newStatus = $_POST;      $ticket->setTicketStatus($newStatus, 0);      $comment = 'Ticket status changed to ' . $ticket->getStatusName($newStatus) . ' by user: ' . $thisstaff->getName();      $ticket->logNote('Ticket status changed', $comment, 'SYSTEM', false);    }  break;Sorry about that, I was looking through the instructions and this section wasn't in there.  I will add it to the instructions and update those.  Let me know if that fixes it (I got the error when I removed this section).  I will update the PDF with this information.Andy