Hello
I use Dolibarr 17.0.2 - Ubuntu 22 - MariaDB
I have adapted my PDF to my wishes.
I swapped out the footer so I don’t always have to adapt pdf.lib.php after an upgrade.
unfortunately I don’t get the bank details.
I’ll try that - the designation will be transferred, the bank details unfortunately not
this is my code
//Bank name footer
$pdf->SetFont('', '', 7);
$posy -= 3;
$pdf->SetXY(110, 282);
$pdf->MultiCell(100, 3, $outputlangs->transnoentities("Bank").': '.$outputlangs->convToOutputCharset($account->bank), 0, 'L', 0);
$cury += 3;
//Bank IBAN footer
$pdf->SetFont('', '', 7);
$posy -= 3;
$pdf->SetXY(110, 285);
$pdf->MultiCell(100, 3, $outputlangs->transnoentities("IBAN").': '.$outputlangs->convToOutputCharset($account->iban), 0, 'L', 0);
$cury += 3;
//Bank BIC footer
$pdf->SetFont('', '', 7);
$posy -= 3;
$pdf->SetXY(110, 288);
$pdf->MultiCell(100, 3, $outputlangs->transnoentities("BIC").': '.$outputlangs->convToOutputCharset($account->bic), 0, 'L', 0);
$cury += 3;
//Bank account owner footer
$pdf->SetFont('', '', 7);
$posy -= 3;
$pdf->SetXY(110, 291);
$pdf->MultiCell(100, 3, $outputlangs->transnoentities("BankAccountOwner").': '.$outputlangs->convToOutputCharset($account->proprio), 0, 'L', 0);
$cury += 3;
}
can someone give me a tip on how to transfer the bank details?
Thanks very much
Aba