Changes between Version 1 and Version 2 of AgiloTicketReportPlugin


Ignore:
Timestamp:
Sep 22, 2009, 2:21:07 AM (15 years ago)
Author:
Tod Jiang
Comment:

add screen shot

Legend:

Unmodified
Added
Removed
Modified
  • AgiloTicketReportPlugin

    v1 v2  
    33== Description ==
    44
    5 Agilo (http://agile42.com/cms/pages/) is nice scrum process tools base on trac.  The agilo ticket only has remaining time property. Some of my projects manager wanted to know the exactly working time during each ticket, so I developed this plugin for agilo. Thanks to agilo developers' sharing this tool, I just contribute something to open source community.
     5Agilo (http://agile42.com/cms/pages/) is nice scrum process tools base on trac.  Every task ticket has an estimation time(hours), the team manager want to know exactly real working time comparing with estimated time. That's maybe metric of team member's working efficiency., so I developed this plugin for agilo. Thanks to agilo developers' sharing this tool, I just contribute something to open source community.
     6== Solution ==
     7There is table named "ticket_change" in database make records of every ticket changes. So we can do data mining in current Trac Database.
     8==== Real working hours = ticket closed time - ticket accept time - None working time ====
     9==== Working time = from 9:00 am to 6:00 pm (exactly 9 hour including 1 hour lunch time) from Monday to Friday ====
     10==== None working time =  from 18 pm to next day 9 am of working days, Sta, Sun, Holidays(Manual configure) ====
     11== Ticket Work Flow ==
     12==== ''Desc: O = open, As = assigned, A = accepted, C = closed, R = reopened'' ====
     13[[Image(ticket_report_flow.JPG)]]
     14
     15Although standard process is O-->As-->-->A-->C-->R-->A-->C, but there are still some tickets do not follow the rule.
     16
     17line1 = T4
     18
     19line2 = T5
     20
     21line3 = T1 +T2
     22
     23line4= T1+T3
    624
    725== Bugs/Feature Requests ==
     
    2139You can check out AgiloTicketReportPlugin from [http://trac-hacks.org/svn/agiloticketreportplugin here] using Subversion, or [source:agiloticketreportplugin browse the source] with Trac.
    2240
     41
     42== Install ==
     43
     44{{{
     451. Download latest pyExcelerator lib and install it.
     46     --- pyExcelerator is open source python excel library
     47http://sourceforge.net/projects/pyexcelerator/
     48
     492. Configure
     50
     51TicketReport\AgiloTicketReport\ticketreport.py
     52line 35
     53
     54if you use single project
     55# just left PROJECT_NAME_PREFIX empty
     56  PROJECT_NAME_PREFIX = ""
     57else # use multiple projects
     58 for example:
     59# http://[ip]:[port]/projects/[PROJECT_NAME]
     60  PROJECT_NAME_PREFIX = "projects"
     61
     623. working time time set up (optional)
     63TicketReport\AgiloTicketReport\gethours.py
     64line 12
     65start time and end time of working day, and holiday configuration
     66}}}
     67
     68
    2369== Example ==
    2470
    25 http://todaydream.com/2009/08/27/simple-ticket-report-plugin-for-trac-agilo-plugin/
     71'''Web UI'''
     72[[Image(ticket_report_r16_02.PNG)]]
     73'''Generated Excel Report'''[[BR]]
    2674
     75[[Image(ticket_report_r16_01.PNG)]]
    2776== Recent Changes ==
    2877