Fix: Widget Spaltenreihenfolge — Mahnstufe vor Status, Status schmal rechts [deploy]
All checks were successful
Deploy mahnung / deploy (push) Successful in 13s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Eduard Wisch 2026-05-10 18:46:16 +02:00
parent ec0c843492
commit b68ef498ee

View file

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