Changeset 933 for trunk/grails-app/domain
- Timestamp:
- Oct 7, 2010, 1:08:20 PM (10 years ago)
- Location:
- trunk/grails-app/domain/dbnp/studycapturing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Event.groovy
r900 r933 113 113 def that = this; 114 114 groups.each { eventgroup -> 115 if (!eventFound ) {115 if (!eventFound && eventgroup.events) { 116 116 eventFound = (that.id in eventgroup.events.id); 117 117 } -
trunk/grails-app/domain/dbnp/studycapturing/SamplingEvent.groovy
r878 r933 79 79 def that = this; 80 80 groups.each { eventgroup -> 81 if (!eventFound ) {81 if (!eventFound && eventgroup.samplingEvents) { 82 82 eventFound = (that.id in eventgroup.samplingEvents.id); 83 83 }
Note: See TracChangeset
for help on using the changeset viewer.