4 Aug 2006 08:36
AgentTicketqueue.pm
Olivier de la CLERGERIE <olivier <at> ldlc.com>
2006-08-04 06:36:53 GMT
2006-08-04 06:36:53 GMT
I have made a change in this pm file,
In fact i wanted to sort the ticket not by Age, but by the time of
creation of the last answer to the customer.
If you sort your ticket by age, a very old ticket wich have received a
answer only minutes ago can be on top of the list.
I didn't want that so i have made this change and would like the change
to be include in next version of AgentTicketQueue.pm
First I have add a sort option "AGE3"
# get data (viewable tickets...)
# --
my <at> ViewableTickets = ();
my $SortBy =
$Self->{ConfigObject}->Get('Ticket::Frontend::QueueSortBy::Default') ||
'Age';
my %SortOptions = (
Owner => 'st.user_id',
CustomerID => 'st.customer_id',
State => 'st.ticket_state_id',
Ticket => 'st.tn',
Title => 'st.title',
Queue => 'sq.name',
Priority => 'st.ticket_priority_id',
Age => 'st.create_time_unix',
#beginning of mOdification by odlc pour tri correct
Age3 => 'triodlc',
#end of modification
TicketFreeTime1 => 'st.freetime1',
(Continue reading)
RSS Feed