Updated application submission date to protocol creation date.
This commit is contained in:
@@ -558,7 +558,7 @@ public class ApplicationEvaluationDao {
|
||||
response.setBeneficiary(beneficiary);
|
||||
response.setNdg(application.getNdg() != null ? application.getNdg() : null);
|
||||
response.setAppointmentId(application.getAppointmentId() != null ? application.getAppointmentId() : null);
|
||||
response.setSubmissionDate(application.getSubmissionDate());
|
||||
response.setSubmissionDate(application.getProtocol().getCreatedDate());
|
||||
response.setMinScore(call.getThreshold() != null ? call.getThreshold() : null);
|
||||
response.setCallName(application.getCall().getName() != null ? application.getCall().getName() : null);
|
||||
response.setProtocolNumber((application.getProtocol() != null && application.getProtocol().getProtocolNumber() != null) ? application.getProtocol().getProtocolNumber() : null);
|
||||
@@ -1386,7 +1386,7 @@ public class ApplicationEvaluationDao {
|
||||
|
||||
String beneficiary = String.join(" ", firstName, lastName).trim();
|
||||
response.setBeneficiary(beneficiary);
|
||||
response.setSubmissionDate(application.getSubmissionDate());
|
||||
response.setSubmissionDate(application.getProtocol().getCreatedDate());
|
||||
response.setNdg(application.getNdg() != null ? application.getNdg() : null);
|
||||
response.setAppointmentId(application.getAppointmentId() != null ? application.getAppointmentId() : null);
|
||||
response.setCallName(application.getCall().getName() != null ? application.getCall().getName() : null);
|
||||
|
||||
Reference in New Issue
Block a user