From 10ea28b2677613cf257dc706204dc988ed561a67 Mon Sep 17 00:00:00 2001 From: Mukul Chajed Date: Fri, 30 Jun 2023 14:57:19 +0530 Subject: [PATCH 1/3] CreatedDate Field changes in common & Identity api --- .../com/iemr/common/mapper/CommonIdentityMapperDecorator.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/iemr/common/mapper/CommonIdentityMapperDecorator.java b/src/main/java/com/iemr/common/mapper/CommonIdentityMapperDecorator.java index 286c9f57..f9b5737d 100644 --- a/src/main/java/com/iemr/common/mapper/CommonIdentityMapperDecorator.java +++ b/src/main/java/com/iemr/common/mapper/CommonIdentityMapperDecorator.java @@ -82,6 +82,7 @@ public CommonIdentityDTO beneficiaryModelCommonIdentityDTO(BeneficiaryModel bene commonIdentityDTO.setIfscCode(beneficiary.getIfscCode()); commonIdentityDTO.setBenImage(beneficiary.getBenImage()); commonIdentityDTO.setSpouseName(beneficiary.getSpouseName()); + commonIdentityDTO.setCreatedDate(beneficiary.getCreatedDate()); commonIdentityDTO.setPreferredEmailId(beneficiary.getEmail()); commonIdentityDTO.setFatherName(beneficiary.getFatherName()); commonIdentityDTO.setAgeAtMarriage(beneficiary.getAgeAtMarriage()); From 502b6234d677ec607055231f19931d84d3cf6987 Mon Sep 17 00:00:00 2001 From: Mukul Chajed Date: Sun, 9 Jul 2023 19:15:34 +0530 Subject: [PATCH 2/3] call close time --- .../common/service/callhandling/BeneficiaryCallServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/iemr/common/service/callhandling/BeneficiaryCallServiceImpl.java b/src/main/java/com/iemr/common/service/callhandling/BeneficiaryCallServiceImpl.java index 5b13f64c..7b2cd926 100644 --- a/src/main/java/com/iemr/common/service/callhandling/BeneficiaryCallServiceImpl.java +++ b/src/main/java/com/iemr/common/service/callhandling/BeneficiaryCallServiceImpl.java @@ -403,7 +403,7 @@ public Integer closeCall(String request, String ipAddress) throws Exception { if (benificiaryCall.getIsTransfered() == null || benificiaryCall.getIsTransfered() == false) { updateCallDisposition(benificiaryCall, benificiaryCall.getAgentIPAddress()); - Thread.sleep(3000); + Thread.sleep(1000); disconnectCallInCTI(benificiaryCall); } From 185f6ccd81c1fe36b298b466b650147daea4f717 Mon Sep 17 00:00:00 2001 From: Mukul Chajed Date: Mon, 10 Jul 2023 17:14:22 +0530 Subject: [PATCH 3/3] Send SMS Null ID issue --- src/main/java/com/iemr/common/model/sms/SMSRequest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/iemr/common/model/sms/SMSRequest.java b/src/main/java/com/iemr/common/model/sms/SMSRequest.java index 691e30aa..f3494a53 100644 --- a/src/main/java/com/iemr/common/model/sms/SMSRequest.java +++ b/src/main/java/com/iemr/common/model/sms/SMSRequest.java @@ -39,7 +39,7 @@ public class SMSRequest { private Integer blockID; private Boolean is1097 = false; private Long userID; - private Integer InstituteID; + private Integer instituteID; private Long feedbackID; private String createdBy; private String alternateNo;