- Timestamp:
- Apr 6, 2011, 4:40:13 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 .classpath 2 .project 3 .idea 1 4 *.iml 2 .classpath3 *.log4 .idea5 .project6 5 target 7 6 {} 8 7 [:] 9 .settings10 8 .skip-studies 11 9 out 12 dtd 10 .settings 11 *.log
-
- Property svn:ignore
-
trunk/grails-app/services/dbnp/studycapturing/AssayService.groovy
r1687 r1716 193 193 def path = moduleUrl + "/rest/getMeasurementMetaData/query?assayToken=$assay.assayUUID" 194 194 195 moduleCommunicationService.callModuleRestMethodJSON(moduleUrl, path) 195 def jsonArray = moduleCommunicationService.callModuleRestMethodJSON(moduleUrl, path) 196 197 // convert the JSONArray of JSONObjects to an array of hash maps 198 jsonArray.collect{ jo -> // JSONObject 199 [(jo.keys()[0]): jo.values().toList()[0]] 200 } 196 201 197 202 } … … 210 215 def tokenString = '' 211 216 212 fields.each{tokenString+="&measurementToken=${it.name.encodeAsURL()}"} 213 217 fields.each{ 218 tokenString+="&measurementToken=${it.name.encodeAsURL()}" 219 } 220 214 221 def path = moduleUrl + "/rest/getMeasurementData/query?assayToken=$assay.assayUUID" + tokenString 215 222
Note: See TracChangeset
for help on using the changeset viewer.