Changeset 1841
- Timestamp:
- May 12, 2011, 3:46:03 PM (7 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/services/dbnp/studycapturing/AssayService.groovy
r1830 r1841 21 21 import java.text.DecimalFormat 22 22 import java.text.NumberFormat 23 import org.dbnp.gdt.Template 24 import org.dbnp.gdt.TemplateField 23 25 24 26 class AssayService { … … 90 92 91 93 val = it.getFieldValue(headerField.name) 92 94 93 95 // Convert RelTime fields to human readable strings 94 96 field = it.getField(headerField.name) … … 98 100 } catch (NoSuchFieldException e) { /* pass */ } 99 101 100 val.toString()}]102 (val instanceof Number) ? val : val.toString()}] 101 103 } 102 104 } … … 625 627 } 626 628 } 627 628 629 } -
trunk/grails-app/views/assay/assayExport/compileExportData.gsp
r1790 r1841 14 14 <body> 15 15 16 <h1>Below you see a preview of the resulting Excelfile, click OK to generate it</h1>16 <h1>Below you see a preview of the resulting file, click OK to generate it</h1> 17 17 18 18 <table> -
trunk/grails-app/views/assay/assayExport/selectAssay.gsp
r1790 r1841 38 38 <h1>Select the assay you want to export data from</h1> 39 39 40 With this exporter you can export (meta) data about samples from an assay to a n Excelfile.40 With this exporter you can export (meta) data about samples from an assay to a file. 41 41 First, select a study from the first list and then select an assay from that study from the second list.<br /> 42 42 -
trunk/grails-app/views/assay/assayExport/selectFields.gsp
r1827 r1841 38 38 <div> 39 39 40 <h1>Select the columns that you want to be included in the resulting Excelfile</h1>40 <h1>Select the columns that you want to be included in the resulting file</h1> 41 41 42 42 In this step you can make a selection from the available fields stored in the database related to the samples, including measurement data from a module (if available). -
trunk/grails-app/views/common/_topnav.gsp
r1838 r1841 23 23 <a href="#">Export</a> 24 24 <ul class="subnav"> 25 <li><g:link controller="assay" action="assayExport">Export Assay Data to Excel</g:link> </li>25 <li><g:link controller="assay" action="assayExport">Export Assay Data to File</g:link> </li> 26 26 <li><g:link controller="exporter" action="index">Export studies as SimpleTox Excel file</g:link></li> 27 27 </ul>
Note: See TracChangeset
for help on using the changeset viewer.