#10057 closed defect (fixed)
The description of reports is not printed
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | normal | Milestone: | 0.12.3 |
Component: | report system | Version: | 0.12.2 |
Severity: | normal | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
When I print a report with description, say {33}, the description portion is gone. Only tickets are listed. This is different from 0.11.7.
The problem can be fixed by moving the description
division out of the form
:
-
(a) NG vs. (b) OK
a b 1 1 <form method="get" action=""> 2 2 <div id="prefs"> 3 3 <div> 4 4 <label> 5 5 Max items per page 6 6 <input type="text" name="max" size="10" value="100" /> 7 7 </label> 8 8 </div> 9 9 10 10 <div class="buttons"> 11 11 <input type="submit" value="Update" /> 12 12 </div> 13 13 </div> 14 15 </form> 14 16 <div id="description"> 15 17 <p> 16 18 MY DESCRIPTION HERE!! 17 19 </p> 18 20 19 21 </div> 20 21 </form>
PS: Don't tell me it's a new feature of 0.12 ;) I really need to print the description as weekly reports of my team.
Attachments (0)
Change History (5)
comment:1 by , 14 years ago
comment:2 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 by , 14 years ago
Owner: | set to |
---|
comment:4 by , 14 years ago
I've tested on 0.12. Same behavior. (Also running {33} looks equal —> without description}
comment:5 by , 14 years ago
Now Works (I understood original reporter complaint), description field can be printed -when selected to be shown-.
I'm not sure if I understood. I'll exemplify my understanding with a workaround we use.
description
field when reporting.Show under each result: Description
" option you obtain a report with an URL like this/query?status=accepted&order=priority
&row=description
.description
field in, we manually modify URL to/query?status=accepted&order=priority
&col
=description
.