示例#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')
示例#2
0
文件: gmBilling.py 项目: ncqgm/gnumed
	def _get_home_address(self):
		return gmDemographicRecord.get_patient_address_by_type (
			pk_patient = self._payload[self._idx['pk_patient']],
			adr_type = 'home'
		)
示例#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')
示例#4
0
文件: gmBilling.py 项目: ncqgm/gnumed
	def _get_default_address(self):
		return gmDemographicRecord.get_patient_address_by_type (
			pk_patient = self._payload[self._idx['pk_patient']],
			adr_type = 'billing'
		)