Skip to content

Commit

Permalink
Merge branch 'develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
srishtigrp78 authored Aug 29, 2024
2 parents aa82d37 + 315118b commit cfa6a47
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@

public class FoetalMonitorData {

private Long partnerFoetalMonitorId;
private Long partnerFetosenseId;
private Long beneficiaryRegID;
private String motherLMPDate;
private String motherName;
private String testName;
private String deviceId;

public Long getPartnerFoetalMonitorId() {
return partnerFoetalMonitorId;
public Long getPartnerFetosenseID() {
return partnerFetosenseId;
}

public void setPartnerFoetalMonitorId(Long partnerFoetalMonitorId) {
this.partnerFoetalMonitorId = partnerFoetalMonitorId;
public void setPartnerFetosenseID(Long partnerFetosenseID) {
this.partnerFetosenseId = partnerFetosenseID;
}

public String getMotherLMPDate() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,5 @@ public interface V_getVanLocDetailsRepo extends CrudRepository<V_getVanLocDetail
+ "and prkdis.Deleted = false and dis.Deleted = false "
+ "and van.vanid = :vanID and usrm.userID = :userID",nativeQuery=true)
ArrayList<Object[]> getVanLocDetailsWithUserID(@Param("vanID") Integer vanID,@Param("userID") Integer userID);

}
Original file line number Diff line number Diff line change
Expand Up @@ -3123,7 +3123,6 @@ public Long saveBenPrescription(PrescriptionDetail prescription) {
}else{
pdConceptID.append(" || ").append("N/A");
}

}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public String sendFoetalMonitorTestDetails(FoetalMonitor request, String auth) t
if (request != null && request.getFoetalMonitorID() > 0) {

FoetalMonitorData foetalMonitorTestDetails = new FoetalMonitorData();
foetalMonitorTestDetails.setPartnerFoetalMonitorId(request.getFoetalMonitorID());
foetalMonitorTestDetails.setPartnerFetosenseID(request.getFoetalMonitorID());

// send benid in place of benregid to foetal monitor
foetalMonitorTestDetails.setBeneficiaryRegID(benID);
Expand Down

0 comments on commit cfa6a47

Please sign in to comment.