1
BEGIN
2
Declare score int;
3
Declare result int;
4
Declare Total int;
5
SELECT 1 as Total,1 as Result,
6
IFNULL(100-Round((((SUM(IF(Status=1 and TimestampDiff(hour,StartedDate,NOW())>TicketNewAgeLimit,1*(TicketNewAgeWeight*.01),0)))+ (SUM(IF(Status=2 and TimestampDiff(hour,StartedDate,NOW())>TicketOpenAgeLimit,1*(TicketOpenWeight*.01),0))))/Count(*))*100),100) as TicketScore
7
from tickets,managementscore Where ClientID=CID into @total,@result,@score;
8
return @score;
9
END