Skip to content

Commit 98aabf4

Browse files
authored
Merge pull request adfinis#840 from open-dynaMIX/accounting-cover-vorschuss
feat: add advance-credit info to accounting export
2 parents e0862d1 + aabaea9 commit 98aabf4

File tree

5 files changed

+88
-3
lines changed

5 files changed

+88
-3
lines changed

api/mysagw/accounting/conftest.py

+16
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,22 @@ def receipt_mock(requests_mock):
215215
}
216216
]
217217
},
218+
"advanceCredits": {
219+
"edges": [
220+
{
221+
"node": {
222+
"document": {
223+
"vorschussbetrag": {
224+
"edges": [{"node": {"value": 5000}}]
225+
},
226+
"vorschussdatum": {
227+
"edges": [{"node": {"value": "2023-05-04"}}]
228+
},
229+
}
230+
}
231+
}
232+
]
233+
},
218234
}
219235
}
220236
}

api/mysagw/accounting/queries/get_receipts.gql

+26
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,32 @@ query Receipts($case_id: ID!) {
213213
}
214214
}
215215
}
216+
advanceCredits: workItems(filter: [{task: "advance-credits"}], order: [{attribute: CREATED_AT, direction: DESC}], first: 1) {
217+
edges {
218+
node {
219+
document {
220+
vorschussbetrag: answers(filter: [{question: "advance-credit-amount-float"}]) {
221+
edges {
222+
node {
223+
... on FloatAnswer {
224+
value
225+
}
226+
}
227+
}
228+
}
229+
vorschussdatum: answers(filter: [{question: "advance-credit-date"}]) {
230+
edges {
231+
node {
232+
... on DateAnswer {
233+
value
234+
}
235+
}
236+
}
237+
}
238+
}
239+
}
240+
}
241+
}
216242
}
217243
}
218244
}
Binary file not shown.

api/mysagw/accounting/tests/__snapshots__/test_views.ambr

+8-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
'iban': 'CH56 0483 5012 3456 7800 9',
1818
'mitgliedinstitution': 'Foo institute',
1919
'section': '6',
20-
'total': 5000.0,
20+
'total': "CHF 5'000.-",
21+
'vorschussbetrag': "CHF 5'000.-",
22+
'vorschussdatum': '04. 05. 2023',
2123
'vp_year': '',
2224
'zahlungszweck': 'Foo Bar',
2325
}),
@@ -45,6 +47,8 @@
4547
'mitgliedinstitution': '',
4648
'section': '',
4749
'total': '',
50+
'vorschussbetrag': '',
51+
'vorschussdatum': '',
4852
'vp_year': '',
4953
'zahlungszweck': '',
5054
}),
@@ -71,7 +75,9 @@
7175
'iban': 'CH56 0483 5012 3456 7800 9',
7276
'mitgliedinstitution': 'Foo institute',
7377
'section': '6',
74-
'total': 5000.0,
78+
'total': "CHF 5'000.-",
79+
'vorschussbetrag': "CHF 5'000.-",
80+
'vorschussdatum': '04. 05. 2023',
7581
'vp_year': '',
7682
'zahlungszweck': 'Foo Bar',
7783
}),

api/mysagw/accounting/views.py

+38-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
from mysagw.dms_client import DMSClient, get_dms_error_response
1414
from mysagw.oidc_auth.permissions import IsAdmin, IsAuthenticated, IsStaff
1515
from mysagw.pdf_utils import SUPPORTED_MERGE_CONTENT_TYPES, add_caluma_files_to_pdf
16+
from mysagw.utils import format_currency
1617

1718
GQL_DIR = Path(__file__).parent.resolve() / "queries"
1819

@@ -258,7 +259,7 @@ def circ_kontonummer_label(slug):
258259
"node",
259260
"value",
260261
],
261-
None,
262+
lambda x: format_currency(x, "CHF") if x else "",
262263
),
263264
"vp_year": (
264265
[
@@ -303,6 +304,42 @@ def circ_kontonummer_label(slug):
303304
],
304305
circ_kontonummer_label,
305306
),
307+
"vorschussbetrag": (
308+
[
309+
"data",
310+
"node",
311+
"advanceCredits",
312+
"edges",
313+
0,
314+
"node",
315+
"document",
316+
"vorschussbetrag",
317+
"edges",
318+
0,
319+
"node",
320+
"value",
321+
],
322+
lambda x: format_currency(x, "CHF") if x else "",
323+
),
324+
"vorschussdatum": (
325+
[
326+
"data",
327+
"node",
328+
"advanceCredits",
329+
"edges",
330+
0,
331+
"node",
332+
"document",
333+
"vorschussdatum",
334+
"edges",
335+
0,
336+
"node",
337+
"value",
338+
],
339+
lambda x: timezone.datetime.fromisoformat(x).strftime("%d. %m. %Y")
340+
if x
341+
else "",
342+
),
306343
}
307344

308345
result = {}

0 commit comments

Comments
 (0)