updated code for CallTitle

This commit is contained in:
rajesh
2024-09-16 23:33:59 +05:30
parent 2a8071e251
commit 6959ac0a65
2 changed files with 2 additions and 2 deletions

View File

@@ -311,7 +311,7 @@ public class ApplicationDao {
applicationGetResponseBean.setComments(applicationEntity.getComments()); applicationGetResponseBean.setComments(applicationEntity.getComments());
applicationGetResponseBean.setSubmissionDate(applicationEntity.getSubmissionDate()); applicationGetResponseBean.setSubmissionDate(applicationEntity.getSubmissionDate());
applicationGetResponseBean.setCallId(applicationEntity.getCall().getId()); applicationGetResponseBean.setCallId(applicationEntity.getCall().getId());
applicationGetResponseBean.setCallTitle(applicationEntity.getCall().getDescriptionShort()); applicationGetResponseBean.setCallTitle(applicationEntity.getCall().getName());
return applicationGetResponseBean; return applicationGetResponseBean;
} }

View File

@@ -260,7 +260,7 @@ public class FlowFormDao {
nextOrPreviousFormResponse.setApplicationFormResponse( nextOrPreviousFormResponse.setApplicationFormResponse(
applicationDao.processForm(formEntity, applicationEntity)); applicationDao.processForm(formEntity, applicationEntity));
nextOrPreviousFormResponse.setCallId(applicationEntity.getCall().getId()); nextOrPreviousFormResponse.setCallId(applicationEntity.getCall().getId());
nextOrPreviousFormResponse.setCallTitle(applicationEntity.getCall().getDescriptionShort()); nextOrPreviousFormResponse.setCallTitle(applicationEntity.getCall().getName());
List<FlowEdgesEntity> flowEdgesList = flowEdgesRepository.findByCallId(applicationEntity.getCall().getId()); List<FlowEdgesEntity> flowEdgesList = flowEdgesRepository.findByCallId(applicationEntity.getCall().getId());
Long totalFormSteps = 3l; Long totalFormSteps = 3l;