23 lines
738 B
PHP
Executable File
23 lines
738 B
PHP
Executable File
<?php
|
|
if($this->edt->show_footer_on_all_pages == 0 && $this->page > 1) return;
|
|
|
|
$this->SetFont('arialpl', '', 7.5);
|
|
|
|
$this->SetXY(13,$this->fh-16);
|
|
$this->Cell(49,0,"Prezes Zarządu - J.Lasowy");
|
|
$this->Cell(40,0,"NIP: 879-016-88-72");
|
|
$this->Cell(56,0,"Sąd Rejonowy w Toruniu");
|
|
$this->Cell(30,0,"Konto: Alior Bank S.A. Oddział w Toruniu");
|
|
|
|
$this->SetXY(13,$this->fh-12.5);
|
|
$this->Cell(49,0,"Wiceprezes - M.Lasowy");
|
|
$this->Cell(40,0,"REGON: 870525737");
|
|
$this->Cell(56,0,"VII Wydział Gospodarczy KRS");
|
|
$this->Cell(30,0,"14 2490 0005 0000 4530 1266 3471");
|
|
|
|
$this->SetXY(13,$this->fh-9);
|
|
$this->Cell(49,0,"");
|
|
$this->Cell(40,0,"Kapitał zakładowy 50 000 PLN");
|
|
$this->Cell(56,0,"KRS 0000160548");
|
|
?>
|