Skip to content

Commit

Permalink
add bank lib
Browse files Browse the repository at this point in the history
  • Loading branch information
mwelters committed Mar 8, 2019
1 parent 41c21b8 commit e452a2e
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -32,6 +32,7 @@
require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/bank.lib.php';
require_once DOL_DOCUMENT_ROOT.'/user/class/userbankaccount.class.php';


Expand Down Expand Up @@ -769,9 +770,6 @@ private function _pagehead(&$pdf, $object, $showaddress, $outputlangs)
$pdf->MultiCell(96, 4, $outputlangs->transnoentities("AUTHOR")." : ".dolGetFirstLastname($userfee->firstname, $userfee->lastname), 0, 'L');
$posy+=5;
$pdf->SetXY($posx+2, $posy);
$pdf->MultiCell(96, 4, $outputlangs->transnoentities("Bank")." : ".$account->bank, 0, 'L');
$posy+=5;
$pdf->SetXY($posx+2, $posy);
$pdf->MultiCell(96, 4, $outputlangs->transnoentities("IBAN")." : ".$account->iban, 0, 'L');
$posy+=5;
$pdf->SetXY($posx+2, $posy);
Expand Down

0 comments on commit e452a2e

Please sign in to comment.