overhauled preorderlogistics

This commit is contained in:
Luca Haid
2025-10-06 10:31:15 +02:00
parent c46352942d
commit e8a4ec228f
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@
<?php if ($preorder->adb_hausnummer_id): ?>
<?= htmlspecialchars($preorder->adb_hausnummer->strasse->name) ?> <?= htmlspecialchars($preorder->adb_hausnummer->hausnummer) ?>
<?php if ($preorder->adb_wohneinheit_id && (string)$preorder->adb_wohneinheit): ?>
/ <?= htmlspecialchars((string)$preorder->adb_wohneinheit) ?><br />
/ <?= htmlspecialchars((string)$preorder->adb_wohneinheit) ?>
<?php endif; ?><br/>
<?= htmlspecialchars($preorder->adb_hausnummer->plz->plz) ?> <?= htmlspecialchars($preorder->adb_hausnummer->ortschaft->name) ?>
<?php else: ?>

View File

@@ -149,7 +149,7 @@ class PreorderlogisticsController extends mfBaseController {
foreach ($preorders as $preorder) {
ob_start();
$this->printActionContent($preorder->id);
$combinedHtml .= ob_get_clean() . '<div style="page-break-after: always;"></div>';
$combinedHtml .= ob_get_clean();// . '<div style="page-break-after: always;"></div>';
}
echo $combinedHtml;
exit;