Edit _bulk_print_badges.php via Editor

This commit is contained in:
Flatlogic Bot 2026-01-12 09:01:36 +00:00
parent fb86b47003
commit 61f9e88301

View File

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