def get_report_line(self, row):
     return '- {}\r\n'.format(
         get_contact_link(row['organization_name'], row['id']))
Example #2
0
 def get_report_line(self, row):
     return '- {}\r\n\r\n'.format(
         get_contact_link('Click to View', row["civicrm_contact_id"]))
 def get_report_line(self, row):
     return '- {}\r\n'.format(
         get_contact_link('Subject', row['contact_id'])
     )
Example #4
0
 def get_report_line(self, row):
     return '- {}\r\n'.format(
         get_contact_link('Click here to see contact', row['contact_id']))
Example #5
0
 def get_report_line(self, row):
     return '- {}: {}\r\n'.format(
         row['practice_code'],
         get_contact_link(row['display_name'], row['id']))
Example #6
0
 def get_report_line(self, row):
     return '- {}\r\n\r\n'.format(
         get_contact_link(row["StudyNumber"], row["CiviCrmId"]))
Example #7
0
 def get_report_line(self, row):
     return '- {} <-> {}\r\n'.format(
         get_contact_link('Subject A', row['subject_a_id']),
         get_contact_link('Subject B', row['subject_b_id'])
     )
 def get_report_line(self, row):
     return '- {}\r\n'.format(
         get_contact_link(row['contact_type'], row['contact_id']))
Example #9
0
 def get_report_line(self, row):
     return '- {}\r\n'.format(
         get_contact_link(
             row['StudyNumber'],
             row['civicrm_contact_id']))
Example #10
0
 def get_report_line(self, row):
     return '- {}\r\n'.format(
         get_contact_link(
             row['case_type_name'],
             row['civicrm_contact_id']))
Example #11
0
 def get_report_line(self, row):
     return '- {} (IDs \'{}\' of type \'{}\')\r\n'.format(
         get_contact_link('Click to View Contact',
                          row["civicrm_contact_id"]), row['id'],
         row['patient_ide_source'])