diff --git a/htdocs/includes/boxes/box_factures.php b/htdocs/includes/boxes/box_factures.php index 57e2da974b8..c58bdeaa9a9 100644 --- a/htdocs/includes/boxes/box_factures.php +++ b/htdocs/includes/boxes/box_factures.php @@ -42,9 +42,13 @@ if ($result) { $objp = $db->fetch_object( $i); - $info_box_contents[$i][0] = array('align' => 'center', - 'text' => $objp->facnumber . " " . $objp->nom, + $info_box_contents[$i][0] = array('align' => 'left', + 'text' => $objp->facnumber, 'url' => DOL_URL_ROOT."/compta/facture.php3?facid=".$objp->facid); + + $info_box_contents[$i][1] = array('align' => 'left', + 'text' => $objp->nom, + 'url' => DOL_URL_ROOT."/comm/fiche.php3?socid=".$objp->idp); $i++; } }