Changes between Version 12 and Version 13 of Onyx to CiviCRM
- Timestamp:
- 12/13/13 08:52:36 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Onyx to CiviCRM
v12 v13 19 19 - [x] Date and Time of Interview {Interview.start_date} 20 20 - [x] Partiticant Number (Participant.barcode) 21 - [ 21 - [x] Interview Status (Interview.status) Values of 22 22 - IN_PROGRESS 23 23 - CLOSED … … 60 60 , i.start_date AS interviewDate 61 61 , p.barcode AS StudyID 62 , i.status AS interviewStatus 63 , pa.title 62 64 , p.first_name 63 65 , p.last_name … … 86 88 GROUP BY qp.participant_id 87 89 ) consent ON consent.participant_id = p.id 90 LEFT JOIN ( 91 SELECT 92 pa.participant_id 93 , GROUP_CONCAT(if(pa.attribute_name = 'pat_title', pa.text_value, NULL)) AS title 94 FROM participant_attribute_value pa 95 GROUP BY pa.participant_id 96 ) pa ON pa.participant_id = p.id 88 97 ; 89 98