From: ivan Date: Mon, 6 Dec 2004 14:13:23 +0000 (+0000) Subject: and forgot to include the sql for counting tickets with severities... X-Git-Tag: BEFORE_FINAL_MASONIZE~817 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=30fcc76ecfc50dc299bbb86a217f88ffa7de5b64 and forgot to include the sql for counting tickets with severities... --- diff --git a/FS/FS/TicketSystem/RT_External.pm b/FS/FS/TicketSystem/RT_External.pm index a105c2752..26420ded7 100644 --- a/FS/FS/TicketSystem/RT_External.pm +++ b/FS/FS/TicketSystem/RT_External.pm @@ -53,6 +53,7 @@ sub num_customer_tickets { select count(*) from tickets where ( status = 'new' or status = 'open' or status = 'stalled' ) and target = 'freeside://freeside/cust_main/$custnum' + $priority_sql "; my $sth = $dbh->prepare($sql) or die $dbh->errstr;