Merge branch 'PDF_show_sender_name' of https://github.com/bb2a/dolibarr into PDF_show_sender_name

This commit is contained in:
Anthony Berton 2021-08-10 18:08:00 +02:00
commit 7acc5e22d0

View File

@ -1585,7 +1585,7 @@ class pdf_azur extends ModelePDFPropales
$pdf->SetTextColor(0, 0, 60);
// Show sender name
if(empty($conf->global->MAIN_PDF_NO_SENDER_NAME)){
if (empty($conf->global->MAIN_PDF_NO_SENDER_NAME)) {
$pdf->SetXY($posx + 2, $posy + 3);
$pdf->SetFont('', 'B', $default_font_size);
$pdf->MultiCell(80, 4, $outputlangs->convToOutputCharset($this->emetteur->name), 0, $ltrdirection);