Edit _bulk_print_badges.php via Editor

This commit is contained in:
Flatlogic Bot 2026-01-12 08:51:14 +00:00
parent 0b3a1c1c19
commit 6df581c51b

View File

@ -58,13 +58,13 @@ class PDF extends tFPDF
$this->SetFont('DejaVu', 'B', 12); $this->SetFont('DejaVu', 'B', 12);
$this->Cell(0, 10, $person['first_name'] . ' ' . $person['last_name'], 0, 1, 'C'); $this->Cell(0, 10, $person['first_name'] . ' ' . $person['last_name'], 0, 1, 'C');
$this->SetFont('DejaVu', '', 8); $this->SetFont('DejaVu', '', 8);
$this->Cell(0, 10, $person['company_name'] ?? 'N/A', 0, 1, 'C'); $this->Cell(0, 10, $person['company_name'] ?? 'N/A', 1, 1, 'C');
$this->SetFont('DejaVu', '', 8); $this->SetFont('DejaVu', '', 8);
$this->Cell(0, 10, $person['industry'] ?? 'N/A', 0, 1, 'C'); $this->Cell(0, 10, $person['industry'] ?? 'N/A', 1, 1, 'C');
$this->SetXY(1,1); $this->SetXY(1,1);
$this->SetFont('DejaVu', '', 6); $this->SetFont('DejaVu', '', 4);
$this->Cell(0, 5, $person['bni_group_name'] ?? 'N/A', 0, 0, 'C'); $this->Cell(0, 5, $person['bni_group_name'] ?? 'GOŚĆ', 1, 0, 'C');
} }
} }