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

Release/32 #66

Merged
merged 53 commits into from
Feb 11, 2022
Merged
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
ff52377
Added Refactored Tap Boilerplate Classes
Nov 22, 2021
b738db8
ECDDC-476
Nov 22, 2021
efb3ea0
Implemented some logic, need to rethink inheritance, especially initi…
Nov 23, 2021
33459da
Pushing more changes, will test after this
Nov 23, 2021
72e3caa
Intermediary commit
Nov 25, 2021
906b3cc
Added last_account_appraisal_date to loan_accounts.json
Nov 25, 2021
30cbdfe
Implemented bookmark resume and ABC for Generators, with Loan Account…
Nov 26, 2021
c451325
Commit before fixing Appraisal Order Bug
Nov 29, 2021
284f56a
Finished implementation of Loan Accounts Generator/Processor
Nov 29, 2021
0039dd6
Small Bugfixes
Dec 6, 2021
6d82085
Merge branch 'master' into release/32
Dec 6, 2021
2c8fca6
Merge branch 'release/32' into feature/ECDCC-476_Extract-loans
Dec 6, 2021
19800f3
Small fixes suggested by Alex via PR Comments
Dec 6, 2021
f8617c0
Solved __iter__ method and __next__ method duplicated code according …
Dec 6, 2021
f7c4d20
Added a comment so we don't forget about the deduplication_key in the…
Dec 7, 2021
21c8ef2
Merge branch 'feature/ECDCC-476_Extract-loans' into 'release/32'
Dec 7, 2021
6868cbd
Also added record_count
Dec 7, 2021
2a58d92
Merge branch 'feature/ECDCC-476_Extract-loans' into 'release/32'
Dec 7, 2021
7bc95df
adjusted the last_datetime var from sync_endpoint func to use the loo…
DownstreamDataTeam Dec 16, 2021
3eb4038
Merge branch 'feature/ECDCC-500_lookback_window_bugfix' into 'release…
Dec 17, 2021
062e19d
Revert "Merge branch 'feature/ECDCC-500_lookback_window_bugfix' into …
Dec 20, 2021
fa82719
Added Refactored Tap Boilerplate Classes
Nov 22, 2021
7b11dd8
ECDDC-476
Nov 22, 2021
952efdc
Implemented some logic, need to rethink inheritance, especially initi…
Nov 23, 2021
12d3628
Pushing more changes, will test after this
Nov 23, 2021
b7ee002
Intermediary commit
Nov 25, 2021
4d106f4
Added last_account_appraisal_date to loan_accounts.json
Nov 25, 2021
c4de88f
Implemented bookmark resume and ABC for Generators, with Loan Account…
Nov 26, 2021
139a7a7
Commit before fixing Appraisal Order Bug
Nov 29, 2021
8531705
Finished implementation of Loan Accounts Generator/Processor
Nov 29, 2021
3c39c6f
Small Bugfixes
Dec 6, 2021
80ab4f6
Small fixes suggested by Alex via PR Comments
Dec 6, 2021
c9afcbe
Solved __iter__ method and __next__ method duplicated code according …
Dec 6, 2021
0bbfd3a
Added a comment so we don't forget about the deduplication_key in the…
Dec 7, 2021
2a5e45b
Also added record_count
Dec 7, 2021
532e55b
adjusted the last_datetime var from sync_endpoint func to use the loo…
DownstreamDataTeam Dec 16, 2021
e7e3653
Revert "Merge branch 'feature/ECDCC-500_lookback_window_bugfix' into …
Dec 20, 2021
6f04d6d
Merge remote-tracking branch 'origin/release/32' into release/32
DownstreamDataTeam Jan 3, 2022
b4dec65
Started the loan_repayments refactor
DownstreamDataTeam Jan 5, 2022
a9a4717
Finished the refactor
DownstreamDataTeam Jan 5, 2022
7762921
Fixed missing deduplication_key error
DownstreamDataTeam Jan 11, 2022
cd8d18a
Fixed up loan repayments refactor
Jan 14, 2022
96475ee
Added gitlab-ci config
Jan 18, 2022
20632f3
Revert "Added gitlab-ci config"
Jan 18, 2022
4d835f7
Merge branch 'feature/ECDDC-519_loan_repayments_refactor' into 'relea…
Jan 18, 2022
6a923a4
Bugfix for records ignored when filtering by modified_date on records…
Feb 2, 2022
a70b1e1
Merge branch 'bugfix/ECDDC-559-release-32-fix-loan-accounts-appraisal…
Feb 2, 2022
b50a8d4
Fixed processor to take bookmark into account correctly, fixed tap-te…
Feb 3, 2022
936a08a
Also added replication key to tests
Feb 3, 2022
e3f4a05
Adjusted bookmark tests to accept multiple replication keys
Feb 3, 2022
cba648e
Merge branch 'bugfix/ECDDC-559-release-32-fix-loan-accounts-appraisal…
Feb 3, 2022
c4b1b26
Added sorting to gl_journal_entries
Feb 10, 2022
667b241
Merge branch 'bugfix/ECDDC-570_Missing-journal-lines' into 'release/32'
Feb 10, 2022
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
4 changes: 4 additions & 0 deletions tap_mambu/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,10 @@ def sync(client, config, catalog, state):
'api_version': 'v1',
'api_method': 'POST',
'body': {
"sortDetails": {
"sortingColumn": "ENTRY_ID",
"sortingOrder": "ASCENDING"
},
"filterConstraints": [
{
"filterSelection": "CREATION_DATE",
Expand Down