Esempio n. 1
0
 def _get_home_address(self):
     return gmDemographicRecord.get_patient_address_by_type(
         pk_patient=self._payload[self._idx['pk_patient']], adr_type='home')
Esempio n. 2
0
	def _get_home_address(self):
		return gmDemographicRecord.get_patient_address_by_type (
			pk_patient = self._payload[self._idx['pk_patient']],
			adr_type = 'home'
		)
Esempio n. 3
0
 def _get_default_address(self):
     return gmDemographicRecord.get_patient_address_by_type(
         pk_patient=self._payload[self._idx['pk_patient']],
         adr_type='billing')
Esempio n. 4
0
	def _get_default_address(self):
		return gmDemographicRecord.get_patient_address_by_type (
			pk_patient = self._payload[self._idx['pk_patient']],
			adr_type = 'billing'
		)