Changeset 1381 for trunk/grails-app
- Timestamp:
- Jan 12, 2011, 5:29:31 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/importer/ImporterController.groovy
r1380 r1381 507 507 // Valid entity, remove it from failedcells 508 508 failedcells.each { record -> 509 record.importcells.each { cell -> 509 def tempimportcells = [] 510 511 record.importcells.each { cell -> 510 512 // remove the cell from the failed cells session 511 512 if (cell.entityidentifier == entity.getIdentifier()) { 513 if (cell.entityidentifier != entity.getIdentifier()) { 513 514 //record.removeFromImportcells(cell) 514 cell = null 515 } 516 } 515 tempimportcells.add(cell) 516 } 517 } 518 519 record.importcells = tempimportcells 517 520 // } // end of importcells 518 521 } // end of failedcells
Note: See TracChangeset
for help on using the changeset viewer.