Edgewall Software
Modify

Opened 18 years ago

Closed 18 years ago

#3087 closed enhancement (wontfix)

Also show cc in My Tickets

Reported by: sune@… Owned by: daniel
Priority: normal Milestone:
Component: report system Version: 0.9.5
Severity: normal Keywords:
Cc: Branch:
Release Notes:
API Changes:
Internal Changes:

Description

extend the report "My Tickets" like this to list cc'ed tickets also:

SELECT p.value AS __color__,
   (CASE status WHEN 'assigned' THEN 'Assigned' ELSE (CASE cc WHEN '$USER' THEN 'CC'  ELSE 'Owned' END) END) AS __group__,
   id AS ticket, summary, component, version, milestone,
   t.type AS type, severity, priority, time AS created,
   changetime AS _changetime, description AS _description,
   reporter AS _reporter
  FROM ticket t, enum p
  WHERE t.status IN ('new', 'assigned', 'reopened') 
AND p.name = t.priority AND p.type = 'priority' AND (owner = '$USER' OR cc = '$USER')
  ORDER BY (__group__) ASC, p.value, milestone, severity, time

Attachments (0)

Change History (1)

comment:1 by Alec Thomas, 18 years ago

Resolution: wontfix
Status: newclosed

The report module is being deprecated, so no modifications apart from bugfixes are being made to it.

Additionally, as this can be trivially done until then with custom reports, I don't think it's necessary to add it to the core.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain daniel.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from daniel to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.