Opened 12 years ago
Closed 12 years ago
#486 closed enhancement (fixed)
Monthly operation list export should not have optional columns
Reported by: | olle | Owned by: | olle |
---|---|---|---|
Priority: | minor | Milestone: | Reggie v2.12 |
Component: | net.sf.basedb.reggie | Keywords: | |
Cc: |
Description
The current choice of optional columns "Specimen/NoSpecimen" and "Patient ID" should be removed, and the columns should no longer be included in the monthly operation list export.
Change History (4)
comment:1 by , 12 years ago
Status: | new → assigned |
---|
comment:2 by , 12 years ago
Traceability note:
- The monthly operation list export was introduced in Ticket #385 (Export information needed by the tumor registry).
- The list was updated in Ticket #386 (Qiacube/nanodrop wizard).
- The list was updated in Ticket #397 (Add option to export item subtype in the monthly operation list).
- The list was updated in Ticket #398 (Add option to export the monthly operation list for a full year).
- The list was updated in Ticket #416 (Check consent before exporting "monthly operation list").
- The list was updated in Ticket #431 (Add option for exporting PAT-id in the montly operation list).
- The list was updated in Ticket #432 (The monthly operation list should include column headers).
comment:3 by , 12 years ago
Design update:
The monthly operation list export is managed by JSP script export_monthly_oplist.jsp
in reggie/resources/personal/
and java servlet ExportServlet.java
in reggie/src/net/sf/basedb/reggie/servlet/
. Choice of the optional columns is handled by boolean variables exportSubtype
and exportPatientId
, whose values (0 or 1) are transferred from the JSP script to the servlet when calling the latter with variable cmd
set to "ExportMontlyOpList
".
- JSP script
export_monthly_oplist.jsp
inreggie/resources/personal/
is updated by removal of the check boxes for optional columns and always setting the values of boolean variablesexportSubtype
andexportPatientId
to 0 when calling servletExportServlet.java
inreggie/src/net/sf/basedb/reggie/servlet/
with variablecmd
set to "ExportMontlyOpList
".
comment:4 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
(In [1956]) Fixes #486. Monthly operation list export updated by not including "Specimen/NoSpecimen
" sub-types and patient ID in the export:
- JSP script
export_monthly_oplist.jsp
inreggie/resources/personal/
updated by removal of the check boxes for optional columns and always setting the values of boolean variablesexportSubtype
andexportPatientId
to 0 when calling servletExportServlet.java
inreggie/src/net/sf/basedb/reggie/servlet/
with variablecmd
set to "ExportMontlyOpList
".
Ticket accepted.