X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FTicketSystem%2FRT_Internal.pm;h=00398230f28bdbefac10f589adee8412c05771f6;hb=8556d71539c53a4016b0d32d1e4fed8f17d7a853;hp=74006f577142ae617d9c3cd297d519158a9604cd;hpb=dda497584a2e12907bba7cf07051fe34ede63b32;p=freeside.git diff --git a/FS/FS/TicketSystem/RT_Internal.pm b/FS/FS/TicketSystem/RT_Internal.pm index 74006f577..00398230f 100644 --- a/FS/FS/TicketSystem/RT_Internal.pm +++ b/FS/FS/TicketSystem/RT_Internal.pm @@ -8,7 +8,7 @@ use FS::TicketSystem::RT_Libs; @ISA = qw( FS::TicketSystem::RT_Libs ); -sub sql_customer_tickets { +sub sql_num_customer_tickets { "( select count(*) from tickets join links on ( tickets.id = links.localbase ) where ( status = 'new' or status = 'open' or status = 'stalled' ) @@ -18,7 +18,12 @@ sub sql_customer_tickets { sub num_customer_tickets { my( $self, $custnum, $priority ) = ( shift, shift, shift ); - $self->SUPER::new_customer_tickets( $custnum, $priority, dbh ); + $self->SUPER::num_customer_tickets( $custnum, $priority, dbh ); +} + +sub customer_tickets { + my( $self, $custnum, $limit, $priority ) = ( shift, shift, shift, shift ); + $self->SUPER::customer_tickets( $custnum, $limit, $priority, dbh ); } sub href_customer_tickets { @@ -27,5 +32,17 @@ sub href_customer_tickets { popurl(2).'rt/'. $self->SUPER::href_customer_tickets(@_); } +sub href_new_ticket { + my $self = shift; + # well, 2 is wrong here but will have to do for now + popurl(2).'rt/'. $self->SUPER::href_new_ticket(@_); +} + +sub href_ticket { + my $self = shift; + # well, 2 is wrong here but will have to do for now + popurl(2).'rt/'. $self->SUPER::href_ticket(@_); +} + 1;