Skip to content

Commit

Permalink
feature/1099 Update Settlement by ID Changes (#229)
Browse files Browse the repository at this point in the history
* Implement updateSettlementByIdChanges enhancement

* Entire settlement process verified using various scenarios. Corrections made where applicable
  • Loading branch information
ggrg authored Jan 20, 2020
1 parent c6ac906 commit f73b481
Show file tree
Hide file tree
Showing 8 changed files with 215 additions and 188 deletions.
38 changes: 25 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"hapi-openapi": "1.2.6",
"hapi-pagination": "3.0.0",
"lodash": "4.17.15",
"mustache": "3.2.1",
"mustache": "4.0.0",
"parse-strings-in-object": "2.0.0",
"rc": "1.2.8",
"uuid4": "1.1.4"
Expand All @@ -66,7 +66,7 @@
"proxyquire": "2.1.3",
"rewire": "4.0.1",
"run-s": "0.0.0",
"sinon": "8.0.4",
"sinon": "8.1.0",
"standard": "14.3.1",
"swagmock": "1.0.0",
"tap-xunit": "2.4.1",
Expand Down
2 changes: 1 addition & 1 deletion src/domain/settlement/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const groupSettlementWindowContentBySettlementWindow = (records) => {
if (id in settlementWindows) {
settlementWindows[id].push(record)
} else {
settlementWindows[id] = record
settlementWindows[id] = [record]
}
}
return settlementWindows
Expand Down
Loading

0 comments on commit f73b481

Please sign in to comment.