Menu

#90 Report suggestion - status by project

open
None
6
2010-12-24
2004-02-26
Tom Vergote
No

I think a report: bugs by status by project would be
very useful

something like
project: prj1
open bugs: 15
closed bugs: 56

I think that would provide a decent overview on the
status of some projects and their release readyness

Discussion

  • Corey Trager

    Corey Trager - 2004-02-26
    • priority: 5 --> 3
    • assigned_to: nobody --> ctrager
    • summary: Report suggestion --> Report suggestion - status by project
     
  • Corey Trager

    Corey Trager - 2004-02-26

    Logged In: YES
    user_id=645778

    You know, right, that you can create reports yourself? If
    you are handy with SQL. Look at setup.sql at the lines
    starting with "insert into reports".

    In psuedo sql, something like
    select project,
    sum(case when status desc = "open" then 1 else 0 end) [open
    bugs],
    sum (case when status desc = "closed" then 1 else 0 end)
    [closed bugs]
    from bugs
    inner join projects....
    inner join statuses...
    group by project

     
  • Tom Vergote

    Tom Vergote - 2004-02-26

    Logged In: YES
    user_id=676271

    i do, but i just thought this would be a nice one to include
    as a default one

     
  • Corey Trager

    Corey Trager - 2004-02-29
    • priority: 3 --> 2
     
  • Corey Trager

    Corey Trager - 2010-12-24
    • priority: 2 --> 6
     

Log in to post a comment.