Added companyId in evaluation response

This commit is contained in:
rajesh
2025-11-19 12:19:49 +05:30
parent d8538b0b35
commit b52b82d8de
3 changed files with 4 additions and 1 deletions

View File

@@ -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));

View File

@@ -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;

View File

@@ -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;