Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

group additional data details #374

Merged
merged 1 commit into from
Dec 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public class GroupLoanAdditionalData {
private String sourceOfFundsValue;
private String clientLoanRequestNumber;
private LocalDate dateRequested;
private LocalDate dateOfBirth;
private Long position;
private String positionValue;
private String fullName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2635,6 +2635,7 @@ public String schema() {
sourceOfFundsCV.code_description as sourceOfFundsValue,
gla.client_loan_request_number as clientLoanRequestNumber,
gla.date_requested as dateRequested,
gla.date_of_birth as dateOfBirth,
gla.position,
groupPositionCV.code_description as positionValue,
gla.full_name as fullName,
Expand Down Expand Up @@ -2745,6 +2746,7 @@ public GroupLoanAdditionalData mapRow(ResultSet rs, int rowNum) throws SQLExcept
final String sourceOfFundsValue = rs.getString("sourceOfFundsValue");
final String clientLoanRequestNumber = rs.getString("clientLoanRequestNumber");
final LocalDate dateRequested = JdbcSupport.getLocalDate(rs, "dateRequested");
final LocalDate dateOfBirth = JdbcSupport.getLocalDate(rs, "dateOfBirth");
final Long position = rs.getLong("position");
final String positionValue = rs.getString("positionValue");
final String fullName = rs.getString("fullName");
Expand Down Expand Up @@ -2845,7 +2847,7 @@ public GroupLoanAdditionalData mapRow(ResultSet rs, int rowNum) throws SQLExcept
.requestedValue(requestedValue).groupAuthorizedValue(groupAuthorizedValue)
.facilitatorProposedValue(facilitatorProposedValue).proposedFee(proposedFee)
.agencyAuthorizedAmount(agencyAuthorizedAmount).authorizedFee(authorizedFee).totalIncome(totalIncome)
.totalExpenditures(totalExpenditures).availableMonthly(availableMonthly).facValue(facValue).debtLevel(debtLevel)
.totalExpenditures(totalExpenditures).availableMonthly(availableMonthly).facValue(facValue).debtLevel(debtLevel).dateOfBirth(dateOfBirth)
.build();
return additionalGroupLoanData;
}
Expand Down
Loading