- Timestamp:
- Nov 30, 2010, 10:45:55 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/exporter/ExporterController.groovy
r1217 r1218 207 207 def writeMandatoryFields(sub,sample,study) { 208 208 // adding subject name in row 1 209 sample.parentSubject .name? sub.createCell((short)0).setCellValue(sample.parentSubject.name) : "not defined"209 sample.parentSubject ? sub.createCell((short)0).setCellValue(sample.parentSubject.name) : "not defined" 210 210 // adding sample in row 4 211 211 sample.name!=null ? sub.createCell((short)3).setCellValue(sample.name) : "not defined"
Note: See TracChangeset
for help on using the changeset viewer.