-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
525: Add estateguru english csv layout r=ChrisRBe a=Craftplorer I tried to change the language of estateguru but the csv export was still in english so I create a config for it. I also added in the secondary market so the account value on estateguru and PP match perfectly. Co-authored-by: Jonas Meyer <jonas.meyer1@uni-oldenburg.de>
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
type_regex: !!map | ||
deposit: "^Deposit.*" | ||
withdraw: "^Withdrawal.*" | ||
interest: "(^Interest.*)|(^Indemnity.*)|(^Referral.*)|(^EG Bonus.*)|(^Secondary Market Profit.*)" | ||
fee: "(^Secondary Market Loss.*)|(^Fee.*)" | ||
|
||
csv_fieldnames: !!map | ||
booking_date: 'Payment Date' | ||
booking_date_format: '%d/%m/%Y %H:%M' | ||
booking_details: 'Loan Code' | ||
booking_id: 'ID' | ||
booking_type: 'Cash Flow Type' | ||
booking_value: 'Amount' | ||
booking_currency: 'Currency' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,6 +86,7 @@ def parse_args(): | |
"robocash", | ||
"swaper", | ||
"viainvest", | ||
"estateguru_en", | ||
], | ||
default="mintos", | ||
) | ||
|