Fix/missing country name for custom project #157
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to enhance the handling of country data within the custom projects module and introduces a new leftover cost structure. The most important changes include importing the
Country
entity, updating theDataRepository
andCustomProjectsService
to fetch and use country data, and modifying theCustomProjectFactory
andConservationProjectOutput
to include detailed country and leftover cost information.Enhancements to country data handling:
api/src/modules/calculations/data.repository.ts
: Added import forCountry
entity and updatedgetDataForCalculation
method to fetch country data based oncountryCode
. [1] [2]api/src/modules/custom-projects/custom-projects.service.ts
: Added import forCountry
entity and updatedgetDataForCalculation
method to include country data in the returned object, and passed country data tocreateProject
method. [1] [2] [3]Introduction of leftover cost structure:
api/src/modules/custom-projects/input-factory/custom-project.factory.ts
: UpdatedcreateProject
method to include detailed country information and added a new leftover cost structure to theCustomProject
object. [1] [2]shared/dtos/custom-projects/custom-project-output.dto.ts
: Added leftover cost structure toConservationProjectOutput
to provide detailed cost breakdowns.