Skip to content

Commit cfa6a47

Browse files
authored
Merge branch 'develop' into develop
2 parents aa82d37 + 315118b commit cfa6a47

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/main/java/com/iemr/hwc/data/foetalmonitor/FoetalMonitorData.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@
2323

2424
public class FoetalMonitorData {
2525

26-
private Long partnerFoetalMonitorId;
26+
private Long partnerFetosenseId;
2727
private Long beneficiaryRegID;
2828
private String motherLMPDate;
2929
private String motherName;
3030
private String testName;
3131
private String deviceId;
3232

33-
public Long getPartnerFoetalMonitorId() {
34-
return partnerFoetalMonitorId;
33+
public Long getPartnerFetosenseID() {
34+
return partnerFetosenseId;
3535
}
3636

37-
public void setPartnerFoetalMonitorId(Long partnerFoetalMonitorId) {
38-
this.partnerFoetalMonitorId = partnerFoetalMonitorId;
37+
public void setPartnerFetosenseID(Long partnerFetosenseID) {
38+
this.partnerFetosenseId = partnerFetosenseID;
3939
}
4040

4141
public String getMotherLMPDate() {

src/main/java/com/iemr/hwc/repo/location/V_getVanLocDetailsRepo.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,5 @@ public interface V_getVanLocDetailsRepo extends CrudRepository<V_getVanLocDetail
6363
+ "and prkdis.Deleted = false and dis.Deleted = false "
6464
+ "and van.vanid = :vanID and usrm.userID = :userID",nativeQuery=true)
6565
ArrayList<Object[]> getVanLocDetailsWithUserID(@Param("vanID") Integer vanID,@Param("userID") Integer userID);
66+
6667
}

src/main/java/com/iemr/hwc/service/common/transaction/CommonNurseServiceImpl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3123,7 +3123,6 @@ public Long saveBenPrescription(PrescriptionDetail prescription) {
31233123
}else{
31243124
pdConceptID.append(" || ").append("N/A");
31253125
}
3126-
31273126
}
31283127
}
31293128
}

src/main/java/com/iemr/hwc/service/foetalmonitor/FoetalMonitorServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public String sendFoetalMonitorTestDetails(FoetalMonitor request, String auth) t
217217
if (request != null && request.getFoetalMonitorID() > 0) {
218218

219219
FoetalMonitorData foetalMonitorTestDetails = new FoetalMonitorData();
220-
foetalMonitorTestDetails.setPartnerFoetalMonitorId(request.getFoetalMonitorID());
220+
foetalMonitorTestDetails.setPartnerFetosenseID(request.getFoetalMonitorID());
221221

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

0 commit comments

Comments
 (0)