private MergedPatientVo createPatientBeforeMerge()
{
if(form.getLocalContext().getDestinationPatient() == null)
return null;
MergedPatientVo patientBeforeMerge = new MergedPatientVo();
patientBeforeMerge.setDestiantionPatient(form.getLocalContext().getDestinationPatient());
patientBeforeMerge.setName(form.getLocalContext().getDestinationPatient().getName());
patientBeforeMerge.setSex(form.getLocalContext().getDestinationPatient().getSex());
patientBeforeMerge.setDob(form.getLocalContext().getDestinationPatient().getDob());
patientBeforeMerge.setDod(form.getLocalContext().getDestinationPatient().getDod());
patientBeforeMerge.setEthnicOrigin(form.getLocalContext().getDestinationPatient().getEthnicOrigin());
patientBeforeMerge.setReligion(form.getLocalContext().getDestinationPatient().getReligion());
patientBeforeMerge.setMaritalStatus(form.getLocalContext().getDestinationPatient().getMaritalStatus());
patientBeforeMerge.setOccupation(form.getLocalContext().getDestinationPatient().getOccupation());
patientBeforeMerge.setLanguage(form.getLocalContext().getDestinationPatient().getLanguage());
patientBeforeMerge.setAddress(form.getLocalContext().getDestinationPatient().getAddress());
patientBeforeMerge.setAddresses(form.getLocalContext().getDestinationPatient().getAddresses());
patientBeforeMerge.setIdentifiers(form.getLocalContext().getDestinationPatient().getIdentifiers());
patientBeforeMerge.setGp(form.getLocalContext().getDestinationPatient().getGp());
patientBeforeMerge.setGpSurgery(form.getLocalContext().getDestinationPatient().getGpSurgery());
patientBeforeMerge.setNok(form.getLocalContext().getDestinationPatient().getNok());
patientBeforeMerge.setInsurance(form.getLocalContext().getDestinationPatient().getInsurance());
patientBeforeMerge.setCommChannels(form.getLocalContext().getDestinationPatient().getCommChannels());
return patientBeforeMerge;
}
Logic.java 文件源码
java
阅读 19
收藏 0
点赞 0
评论 0
项目:openMAXIMS
作者:
评论列表
文章目录