ConcourseSuite Support

Support
Corporate
PUBLIC PROFILE

Defect Tracking

Defect Tracking helps users to track tickets related to a common defect.

Java Classes

Base objects are:
org.aspcfs.modules.troubletickets.base.TicketDefect;
org.aspcfs.modules.troubletickets.base.TicketDefectList;

Module action is:
org.aspcfs.modules.troubletickets.actions.TroubleTicketDefects;

JSPs

Defect Tracking JSPs are located at src/web/troubletickets/*.
All the JSP files related to the Defect Tracking have the prefix "troubletickets_defect_".
The troubletickets_details.jsp is reused to display the ticket details from the defect details page. The attribute defectCheck is used to determine the correct trails in the ticket details page.

Database Tables

table ticket_defect

  1. defect_id - primary key
  2. title - a concise title of the defect
  3. description - text describing the defect in detail
  4. start_date - estimated start date of the defect.
  5. end_date - estimated date then the defect expires.
  6. enabled - used to disable the defect without effecting the start and expiration dates.
  7. trashed_date - this date/time field is set to let the application's background trashing process delete the defect and related ticket mapping.
  8. site_id - the site selection of the defect.

Object Validation

ObjectValidator checks for the presence of the fields title and startDate on Adding/Modifying TicketDefects.

Sign in to add your comment.