From b68ef498ee30c82a0ed677fbcd1571c6dde69f9e Mon Sep 17 00:00:00 2001 From: Eduard Wisch Date: Sun, 10 May 2026 18:46:16 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20Widget=20Spaltenreihenfolge=20=E2=80=94?= =?UTF-8?q?=20Mahnstufe=20vor=20Status,=20Status=20schmal=20rechts=20[depl?= =?UTF-8?q?oy]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- core/boxes/box_mahnung_offen.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/core/boxes/box_mahnung_offen.php b/core/boxes/box_mahnung_offen.php index 66c1ed7..602e9fa 100644 --- a/core/boxes/box_mahnung_offen.php +++ b/core/boxes/box_mahnung_offen.php @@ -185,19 +185,19 @@ class box_mahnung_offen extends ModeleBoxes 'text' => dol_print_date($datelimit, 'day', 'tzuserrel'), ); - // Spalte 5: Status (wie Original) - $this->info_box_contents[$line][] = array( - 'td' => 'class="right" width="18"', - 'text' => $facturestatic->LibStatut($objp->paye, $objp->status, 3, $objp->am, $objp->type), - ); - - // Spalte 6: Mahnstufe + // Spalte 5: Mahnstufe $this->info_box_contents[$line][] = array( 'td' => 'class="center nowraponall"', 'text' => !empty($mahnBadge) ? $mahnBadge : '', 'asis' => 1, ); + // Spalte 6: Status (rechts am Rand, schmal) + $this->info_box_contents[$line][] = array( + 'td' => 'class="nowraponall right" width="16"', + 'text' => $facturestatic->LibStatut($objp->paye, $objp->status, 3, $objp->am, $objp->type), + ); + $line++; }