Skip to content

Commit

Permalink
removed duplicate field
Browse files Browse the repository at this point in the history
  • Loading branch information
azizbekxm committed Dec 6, 2024
1 parent 11f3013 commit f2f5093
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ SELECT
'budgetName', budget.jsonb ->>'name',
'budgetStatus', budget.jsonb ->>'budgetStatus',
'budgetInitialAllocation', budget.jsonb ->>'initialAllocation',
'budgetCurrentAllocation', budget.jsonb ->>'allocated',
'budgetAllowableExpenditure', budget.jsonb ->>'allowableExpenditure',
'budgetAllowableEncumbrance', budget.jsonb ->>'allowableEncumbrance',
'budgetAcqUnitIds', budget.jsonb ->'acqUnitIds',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ private FyFinanceDataCollection createTestFinanceDataCollection() {
.withBudgetName("NAME CHANGED")
.withBudgetStatus(FyFinanceData.BudgetStatus.INACTIVE)
.withBudgetInitialAllocation(1000.0)
.withBudgetCurrentAllocation(900.0)
.withBudgetAllowableExpenditure(800.0)
.withBudgetAllowableEncumbrance(700.0)
.withBudgetAcqUnitIds(List.of("unit1"));
Expand Down

0 comments on commit f2f5093

Please sign in to comment.