-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add YNAP parsing to transaction import
This adds YNAP parsing to transaction importing, removing the need to parse the file in the YNAP web app before uploading it to Envelope Zero. Co-Authored-By: Fynn Heintz <[email protected]> Co-Authored-By: Morre <[email protected]>
- Loading branch information
1 parent
5e66312
commit ffd66b4
Showing
12 changed files
with
1,137 additions
and
1,689 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 |
---|---|---|
|
@@ -14,22 +14,30 @@ env: | |
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: read | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Cache dependencies | ||
uses: actions/[email protected] | ||
with: | ||
node-version: '16' | ||
node-version: '20' | ||
cache: 'npm' | ||
|
||
- name: set npm auth | ||
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc | ||
|
||
- name: install node modules | ||
run: npm ci | ||
|
||
- uses: pre-commit/[email protected] | ||
|
||
cypress: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: read | ||
|
||
# Current backend version as service container | ||
services: | ||
|
@@ -44,6 +52,9 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: set npm auth | ||
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc | ||
|
||
- uses: cypress-io/[email protected] | ||
with: | ||
start: npm run start-ci | ||
|
@@ -93,9 +104,9 @@ jobs: | |
- name: Build and push Docker image | ||
uses: docker/[email protected] | ||
with: | ||
context: . | ||
push: ${{ contains('refs/tags/', github.ref) }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
build-args: | | ||
VITE_VERSION=${{ github.ref_name }} | ||
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} |
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 @@ | ||
@envelope-zero:registry=https://npm.pkg.github.com |
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
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
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,11 @@ | ||
; | ||
"Umsätze Verrechnungskonto ";"Zeitraum: 30 Tage"; | ||
"Neuer Kontostand";"16,94 EUR"; | ||
|
||
"Buchungstag";"Wertstellung (Valuta)";"Vorgang";"Buchungstext";"Umsatz in EUR"; | ||
"20.06.2023";"20.06.2023";"Irrevevant";"Empfänger: Non Existing Account Buchungstext: Text Ref. 000000000/0 ";"-84,76"; | ||
"19.06.2023";"19.06.2023";"Irrevevant";"Auftraggeber: My Other Account Buchungstext: Transfer from my other account Ref. 0000000000000/0 ";"5,00"; | ||
"16.06.2023";"16.06.2023";"Irrevevant";"Empfänger: New Account Buchungstext: REDACTED Ref. 000000000/0 ";"-784,94"; | ||
"15.06.2023";"15.06.2023";"Irrevevant";"Auftraggeber: External Account Buchungstext: Text Ref. 000000000/0 ";"-52,03"; | ||
|
||
"Alter Kontostand";"16,89 EUR"; |
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,5 @@ | ||
Date,Payee,Memo,Outflow,Inflow | ||
06/20/2023,Non Existing Account,Text,84.76, | ||
06/19/2023,My Other Account,Transfer from my other account,,5.00 | ||
06/16/2023,New Account,REDACTED,784.94, | ||
06/15/2023,External Account,Text,52.03, |
Oops, something went wrong.