Changeset 1676 for trunk/grails-app/controllers/dbnp/importer
- Timestamp:
- Mar 28, 2011, 11:30:01 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/importer/ImporterController.groovy
r1658 r1676 108 108 109 109 flow.page = 1 110 flow.studies = Study.findAllWhere(owner: authenticationService.getLoggedInUser()) 110 flow.studies = Study.findAllByOwner(authenticationService.getLoggedInUser(), [sort:"code", order:"asc"]).each { 111 it.code = (it.code == null) ? "[no code]" : it.code 112 } 111 113 flow.importer_fuzzymatching = "false" 112 114
Note: See TracChangeset
for help on using the changeset viewer.