Changeset 1608 for trunk/grails-app/services/dbnp
- Timestamp:
- Mar 9, 2011, 3:56:26 PM (12 years ago)
- Location:
- trunk/grails-app/services/dbnp
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/services/dbnp/importer/ImporterService.groovy
r1603 r1608 23 23 def authenticationService 24 24 25 static transactional = true25 static transactional = false 26 26 27 27 /** … … 339 339 importedEntities = importedRows.flatten().findAll { it.class == dbnp.studycapturing.Sample }.unique(); 340 340 341 def importedSample = findEntityInImportedEntities( dbnp.studycapturing.Sample, excelRow, mcmap, importedEntities, df )342 def imported = retrieveEntitiesBySample( importedSample );341 def importedSample = null // findEntityInImportedEntities( dbnp.studycapturing.Sample, excelRow, mcmap, importedEntities, df ) 342 def imported = [] // retrieveEntitiesBySample( importedSample ); 343 343 344 344 for( entity in entities ) { … … 675 675 * Retrieves a mapping column from a list based on the given fieldname 676 676 * @param mappingColumns List of mapping columns 677 * @param fieldName Field name to find678 * @return Mapping column if a column is found, null otherwise677 * @param fieldName Field name to find 678 * @return Mapping column if a column is found, null otherwise 679 679 */ 680 680 def findMappingColumn( mappingColumns, String fieldName ) {
Note: See TracChangeset
for help on using the changeset viewer.