Edit _bulk_print_badges.php via Editor

This commit is contained in:
Flatlogic Bot 2026-01-12 08:57:56 +00:00
parent c7dc809d9e
commit bedf2de8b1

View File

@ -58,13 +58,13 @@ 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, 3, $person['company_name'] ?? 'N/A', 1, 1, 'C');
$this->Cell(0, 3, $person['company_name'] ?? 'N/A', 0, 1, 'C');
$this->SetFont('DejaVu', '', 6);
$this->Cell(0, 3, $person['industry'] ?? 'N/A', 1, 1, 'C');
$this->Cell(0, 3, $person['industry'] ?? 'N/A', 0, 1, 'C');
$this->SetXY(5,10);
$this->SetXY(5,15);
$this->SetFont('DejaVu', '', 6);
$this->Cell(10, 3, $person['bni_group_name'] ?? 'GOŚĆ', 1, 0, 'C');
$this->Cell(30, 3, $person['bni_group_name'] ?? 'GOŚĆ', 1, 0, 'C');
}
}