-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: implement parsing from CZ paypal
- Loading branch information
Showing
6 changed files
with
58 additions
and
5 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
2 changes: 2 additions & 0 deletions
2
.../IntegrationTests.ConvertTransactions_ParsesAndConvertsTransactions_PaypalCZ.verified.txt
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,2 @@ | ||
0740000002001353907Czech Goods s.r.o. 01111900000013280900+00000016514842+000000461730770000000494070190011300424FIO | ||
07500000020013539210000000000000000000000000000000000895356611132876594000000000000000000000000000140711328765940000000124100623 |
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
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,2 @@ | ||
"Datum","Čas","Časové pásmo","Popis","Měna","Brutto ","Poplatek ","Netto","Zůstatek","ID transakce","E-mailová adresa odesílatele","Název","Název banky","Bankovní účet","Výše poštovného a balného","Daň z prodeje","ID faktury","Referenční ID transakce" | ||
"10/6/2023","11:52:55","Europe/Prague","General Withdrawal - Bank Account","CZK","-89 535,66","0,00","-89 535,66","-89 535,66","0X14071132876594C","","","Fio banka, a.s.","3907","0,00","0,00","","" |
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
39 changes: 39 additions & 0 deletions
39
Mapp.UI/Transactions Configs/TransactionsConfigPaypalCZ.json
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,39 @@ | ||
{ | ||
"LinesToSkipBeforeColumnNames": 0, | ||
"MarketPlaceId": 21, | ||
"DistinctionPhrases": [ "Datum", "Čas", "Časové pásmo", "Popis" ], | ||
"DateSubstring": "(.*)", | ||
"TimeSeparatorOverride": null, | ||
"DateCultureInfoName": "cs-CZ", | ||
"OrderIdColumnName": "ID transakce", | ||
"TransactionTypeColumnName": "Popis", | ||
"DateTimeColumnNames": [ | ||
"Datum", | ||
"Čas" | ||
], | ||
"ValueComponentsColumnName": [ | ||
"Brutto", | ||
"Daň z prodeje" | ||
], | ||
"TransferTypeNames": [ | ||
"General Withdrawal - Bank Account" | ||
], | ||
"RefundTypeNames": [ | ||
"Payment Refund" | ||
], | ||
"OrderTypeNames": [ | ||
"eBay Auction Payment", | ||
"Express Checkout Payment", | ||
"General Payment", | ||
"Mobile Payment", | ||
"Website Payment" | ||
], | ||
"ServiceFeeTypeNames": [ | ||
"General Currency Conversion", | ||
"Tax collected by partner", | ||
"Cancellation of Hold for Dispute Resolution", | ||
"Hold on Balance for Dispute Investigation", | ||
"PreApproved Payment Bill User Payment" | ||
], | ||
"TotalPriceColumnName": "Brutto" | ||
} |