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++; }