X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Ftickets.html;h=adfaead6ea1cc9f90e657a0d0b3a6df7c2e07166;hp=eea5a7f98863ada247d4e3aead6a892ccecfbc18;hb=3805d9b6fef0f8627bd74066cfd28d279ae5341a;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c diff --git a/httemplate/view/cust_main/tickets.html b/httemplate/view/cust_main/tickets.html index eea5a7f98..adfaead6e 100644 --- a/httemplate/view/cust_main/tickets.html +++ b/httemplate/view/cust_main/tickets.html @@ -9,11 +9,10 @@ function updateTicketLink() { keys %new_param),'Queue=') %>" + selector.options[selector.selectedIndex].value; } -Create new ticket - in queue +<% mt('Create new ticket') |h %> + <% mt('in queue') |h %> %# fetch list of queues in which the user can create tickets -% my $session = FS::TicketSystem->session(); -% my %queues = FS::TicketSystem->queues($session, 'CreateTicket'); +% my %queues = FS::TicketSystem->queues('', 'CreateTicket'); % if( $conf->exists('ticket_system-force_default_queueid') ) { <% $queues{$new_param{'Queue'}} %> @@ -31,22 +30,27 @@ function updateTicketLink() {
-(View <% $openlabel %> tickets for this customer) -(View resolved tickets for this customer) +(<% mt("View $openlabel tickets for this customer") |h %>) +(<% mt('View resolved tickets for this customer') |h %>)

-<% include("/elements/table-grid.html") %> +<& /elements/table-grid.html &> % my $bgcolor1 = '#eeeeee'; % my $bgcolor2 = '#ffffff'; % my $bgcolor = ''; - # - Subject - Status - Queue - Owner - Priority + <% mt('#') |h %> + <% mt('Subject') |h %> + <% mt('Status') |h %> + <% mt('Queue') |h %> + <% mt('Owner') |h %> + <% mt('Due') |h %> + <% mt('Estimated Time') |h %> + <% mt('Priority') |h %> +% if ( $ss_priority ) { + <% mt('Customer Priority') |h %> +% } % foreach my $ticket ( @tickets ) { @@ -78,6 +82,14 @@ function updateTicketLink() { <% $ticket->{owner} %> + + + <% $date_formatter->($ticket->{due}) %> + + + + <% $ticket->{timeestimated} %> + <% $ticket->{content} @@ -85,7 +97,13 @@ function updateTicketLink() { : $ticket->{priority} %> - + +% if ( $ss_priority ) { + + <% $ticket->{"CF.{$ss_priority}"} %> + +% } + % } @@ -93,6 +111,8 @@ function updateTicketLink() { <%init> +use Date::Format 'time2str'; +use Date::Parse 'str2time'; my( $conf ) = new FS::Conf; my( $cust_main ) = @_; @@ -106,13 +126,38 @@ my $res_link = FS::TicketSystem->href_customer_tickets( { 'statuses' => [ 'resolved' ] } ); -my( $new_base, %new_param ) = FS::TicketSystem->href_params_new_ticket( - $cust_main, - join(', ', $cust_main->invoicing_list_emailonly ) ); +my( $new_base, %new_param ) = + FS::TicketSystem->href_params_new_ticket( $cust_main ); + +my $new_link = FS::TicketSystem->href_new_ticket( $cust_main ); + +my $ss_priority = FS::TicketSystem->selfservice_priority; +if ( $ss_priority ) { + my $dir = $conf->exists('ticket_system-priority_reverse') ? -1 : 1; + use sort 'stable'; + # sort in the following way: + @tickets = sort { + # within a severity level... + ( $a->{'content'} eq $b->{'content'} ) ? ( + # no-priority tickets sort last + ( + ($a->{'_selfservice_priority'} eq '') <=> + ($b->{'_selfservice_priority'} eq '') + ) || + # otherwise obey ticket_system-priority_reverse + ( $dir * + ($b->{'_selfservice_priority'} <=> $a->{'_selfservice_priority'}) + ) + ) : 0; # but don't rearrange between severity levels + } @tickets; +} + +my $format = $conf->config('date_format') || '%Y-%m-%d'; -my $new_link = FS::TicketSystem->href_new_ticket( - $cust_main, - join(', ', $cust_main->invoicing_list_emailonly ) - ); +my $date_formatter = sub { + my $time = str2time($_[0], 'GMT'); + # exclude times within 24 hours of zero + ($time > 86400) ? time2str($format, $time) : ''; +};