Skip to content

Commit

Permalink
Allow longer remarks on the PDF files
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtronics committed Nov 17, 2024
1 parent f39a9c2 commit 2835a02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/pdf/payment_order/payment_order_stura.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<h4 style="margin: 0;">Rechnerische Prüfung (KV):</h4>
{% if paymentOrder.mathematicallyCorrect.remark is not empty %}
<p style="margin: 0; font-size: 9pt;">
<b>Prüfanmerkung</b>: {{ paymentOrder.mathematicallyCorrect.remark | u.truncate(180, '...') }}
<b>Prüfanmerkung</b>: {{ paymentOrder.mathematicallyCorrect.remark | u.truncate(220, '...') }}
</p>
{% endif %}

Expand All @@ -43,7 +43,7 @@
<h4 style="margin: 0;">Sachliche Prüfung (HHV):</h4>
{% if paymentOrder.factuallyCorrect.remark is not empty %}
<p style="margin: 0; font-size: 9pt;">
<b>Prüfanmerkung</b>: {{ paymentOrder.factuallyCorrect.remark | u.truncate(180, '...') }}
<b>Prüfanmerkung</b>: {{ paymentOrder.factuallyCorrect.remark | u.truncate(220, '...') }}
</p>
{% endif %}

Expand Down

0 comments on commit 2835a02

Please sign in to comment.