Skip to content

Commit

Permalink
show only if checkbox is checked
Browse files Browse the repository at this point in the history
  • Loading branch information
mrothauer committed Mar 7, 2025
1 parent 92efd97 commit 5cb55f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

if ($object->fundingusageproof && $object->receiptlist_difference > 0) {
if ($object->fundingusageproof && $object->fundingusageproof->payback_ok && $object->receiptlist_difference > 0) {
echo '<div style="text-align:right;border-radius:3px;">';
echo $this->MyNumber->formatAsDecimal($object->receiptlist_difference) . ' €';
echo '</div>';
Expand Down

0 comments on commit 5cb55f5

Please sign in to comment.