Changeset 1219 for trunk/grails-app/controllers
- Timestamp:
- Nov 30, 2010, 10:50:36 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/exporter/ExporterController.groovy
r1218 r1219 212 212 // adding label (EventGroup) in row 6 213 213 for (ev in EventGroup.list()){ 214 if ( (sample.parentSubject.name) && (ev.subjects.name.contains(sample.parentSubject.name))) { 215 sub.createCell((short)5).setCellValue(ev.name) 216 break 217 } 214 if(sample.parentSubject){ 215 if ( (sample.parentSubject.name) && (ev.subjects.name.contains(sample.parentSubject.name))) { 216 sub.createCell((short)5).setCellValue(ev.name) 217 break 218 } 219 else { 220 sub.createCell((short)5).setCellValue(" ") 221 }} 218 222 else { 219 223 sub.createCell((short)5).setCellValue(" ")
Note: See TracChangeset
for help on using the changeset viewer.