Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,15 @@ public class RMNCHBeneficiaryDetailsRmnch {
@Expose
private String otherPlaceOfDeath;

@Expose
private String placeOfCurrentLiving;

@Expose
private String otherPlaceOfCurrentLiving;

@Expose
private String institutionName;

@Expose
private Boolean isSpouseAdded;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,4 +214,13 @@ public class RMNCHMBeneficiarydetail {
@Expose
@Transient
private Integer ProviderServiceMapID;

@Expose
private String placeOfCurrentLiving;

@Expose
private String otherPlaceOfCurrentLiving;

@Expose
private String institutionName;
}
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,9 @@ public String syncDataToAmrit(String requestOBJ) throws Exception {
rmnchmBeneficiarydetail.setGenderId(obj.getGenderId());
rmnchmBeneficiarydetail.setMaritalstatus(obj.getMaritalstatus());
rmnchmBeneficiarydetail.setMaritalstatusId(obj.getMaritalstatusId());
rmnchmBeneficiarydetail.setPlaceOfCurrentLiving(obj.getPlaceOfCurrentLiving());
rmnchmBeneficiarydetail.setOtherPlaceOfCurrentLiving(obj.getOtherPlaceOfCurrentLiving());
rmnchmBeneficiarydetail.setInstitutionName(obj.getInstitutionName());
benDetailsList.add(rmnchmBeneficiarydetail);
}
}
Expand Down
Loading