commit 6203b05e31ae5e12e40b5d64f3ca32e77f26670e
parent 4e3fc43762a9927b0c4bcf1a2e4e641b37aa3d02
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 27 Nov 2025 11:00:29 +0100
-add todos for PDF generation
Diffstat:
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/contrib/typst/vqf_902_1_customer.typ b/contrib/typst/vqf_902_1_customer.typ
@@ -413,9 +413,9 @@
inset: 5pt,
checkbox("" != get("CUSTOMER_ID_AMLA_FILE_REFERENCE_NO")), [Customer identification documents (or: reference#footnote[If the identification document is lists kept in another AMLA-File (in the case of Art. 15 para. 3 SRO Regulations) a reference to the according AMLA-File is sufficient.] to AMLA File No.: #underline([#get("CUSTOMER_ID_AMLA_FILE_REFERENCE_NO")]))],
checkbox("" != get("ESTABLISHER_ID_AMLA_FILE_REFERENCE_NO")), [Identification document of persons establishing the business relationship (or: reference to AMLA File No.: #underline([#get("ESTABLISHER_ID_AMLA_FILE_REFERENCE_NO")]))],
- checkbox(get("HAVE_VQF_902_9") or get("HAVE_VQF_902_11") or get("HAVE_VQF_902_12") or get("HAVE_VQF_902_13") or get("HAVE_VQF_902_15")), [Establishing of the beneficial owner of the assets/controlling person (VQF Doc No. 902.15, 902.9, 902.11, 902.12 or 902.13)],
- checkbox(get("HAVE_VQF_902_5")), [Customer profile (VQF doc. No. 902.5; only in the case of permanent business relationship and regular customers)],
- checkbox(get("HAVE_VQF_902_4")), [Risk profile (VQF doc. No. 902.4)],
+// checkbox(get("HAVE_VQF_902_9") or get("HAVE_VQF_902_11") or get("HAVE_VQF_902_12") or get("HAVE_VQF_902_13") or get("HAVE_VQF_902_15")), [Establishing of the beneficial owner of the assets/controlling person (VQF Doc No. 902.15, 902.9, 902.11, 902.12 or 902.13)],
+// checkbox(get("HAVE_VQF_902_5")), [Customer profile (VQF doc. No. 902.5; only in the case of permanent business relationship and regular customers)],
+// checkbox(get("HAVE_VQF_902_4")), [Risk profile (VQF doc. No. 902.4)],
)
v(1em)
diff --git a/src/mhd/mhd_typst.c b/src/mhd/mhd_typst.c
@@ -290,7 +290,7 @@ pdftk_done_cb (void *cls,
"pdftk exited with status %d\n",
(int) exit_code);
typst_context_fail (tc,
- 42,
+ 42, // FIXME: use proper EC!
"pdftk failed");
}
else
@@ -311,7 +311,7 @@ pdftk_done_cb (void *cls,
"pdftk died with signal %d\n",
(int) exit_code);
typst_context_fail (tc,
- 42,
+ 42, // FIXME: use proper EC!
"pdftk killed by signal");
break;
}
@@ -404,7 +404,7 @@ typst_done_cb (void *cls,
"Typst exited with status %d",
(int) exit_code);
typst_context_fail (tc,
- 42,
+ 42, // FIXME: use proper EC!
err);
TALER_MHD_typst_cancel (tc);
return;
@@ -422,7 +422,7 @@ typst_done_cb (void *cls,
"Typst died with signal %d",
(int) exit_code);
typst_context_fail (tc,
- 42,
+ 42, // FIXME: use proper EC!
err);
TALER_MHD_typst_cancel (tc);
return;
@@ -696,7 +696,7 @@ TALER_MHD_typst (
"Typst setup failed on stage %u",
i);
typst_context_fail (tc,
- 42,
+ 42, // FIXME: use proper EC!
err);
TALER_MHD_typst_cancel (tc);
return NULL;