Added companyId in evaluation response
This commit is contained in:
@@ -205,7 +205,7 @@ public class ApplicationEvaluationDao {
|
||||
CompanyEntity company=companyService.validateCompany(entity.getAssignedApplicationsEntity().getApplication().getCompanyId());
|
||||
|
||||
setAmendmentDetails(entity,response);
|
||||
|
||||
response.setCompanyId(company.getId());
|
||||
response.setCompanyVatNumber(company.getVatNumber());
|
||||
response.setCompanyCodiceAteco(company.getCodiceAteco());
|
||||
setCriteriaResponses(entity, response, evaluationCriterias);
|
||||
@@ -2434,6 +2434,7 @@ public class ApplicationEvaluationDao {
|
||||
if (evaluationFormEntity != null) {
|
||||
response.setApplicationEvaluationFormResponse(convertEvaluationFormToResponse(evaluationFormEntity, evaluationEntity));
|
||||
}
|
||||
response.setCompanyId(company.getId());
|
||||
response.setCompanyVatNumber(company.getVatNumber());
|
||||
response.setCompanyCodiceAteco(company.getCodiceAteco());
|
||||
response.setSignedDocument(getApplicationSignedDocument(evaluationEntity));
|
||||
|
||||
@@ -15,6 +15,7 @@ public class ApplicationEvaluationFormResponse {
|
||||
|
||||
private Long id;
|
||||
private Long applicationId;
|
||||
private Long companyId;
|
||||
private ApplicationStatusTypeEnum applicationStatus;
|
||||
private Long assignedApplicationId;
|
||||
private String note;
|
||||
|
||||
@@ -15,6 +15,7 @@ public class ApplicationEvaluationResponse {
|
||||
|
||||
private Long id;
|
||||
private Long applicationId;
|
||||
private Long companyId;
|
||||
private ApplicationStatusTypeEnum applicationStatus;
|
||||
private Long assignedApplicationId;
|
||||
private String note;
|
||||
|
||||
Reference in New Issue
Block a user