Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#1052 closed Patches (wontfix)

Add ticket report that shows ticket without milestones

Reported by: Marcus Lindblom <macke@…> Owned by:
Milestone: To Be Determined Component: None
Version: Severity: Cosmetic
Keywords: Cc:

Description

There are quite a few tickets without milestones. This report is what we use to detect those. Having a milestone always makes for a better roadmap.

SELECT p.value AS __color__,
   id AS ticket, summary, component, version, t.type AS type, 
   (CASE status WHEN 'assigned' THEN owner||' *' ELSE owner END) AS owner,
   time AS created,
   changetime AS _changetime, description AS _description,
   reporter AS _reporter
  FROM ticket t, enum p
  WHERE 
      status IN ('new', 'assigned', 'reopened') AND 
      milestone = '' AND 
      p.name = t.priority AND 
      p.type = 'priority'
  ORDER BY p.value, t.type, time

Change History (3)

comment:1 by Douglas Gregor, 15 years ago

Why isn't the "Active Tickets by Milestone" report good enough? Just scroll down to get the same information.

comment:2 by Marcus Lindblom <macke@…>, 15 years ago

It actually is, I think.

We use our view to quickly verify that there are no non-assigned tickets, but I suppose that's mostly a matter of taste. ;)

comment:3 by Douglas Gregor, 15 years ago

Resolution: wontfix
Status: newclosed
Note: See TracTickets for help on using tickets.