Edit _bulk_print_badges.php via Editor

This commit is contained in:
Flatlogic Bot 2026-01-12 08:56:46 +00:00
parent 1c47d12879
commit c7dc809d9e

View File

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