From 2e1329a1593004a5fb302a889961616027ef06b0 Mon Sep 17 00:00:00 2001 From: int2001 Date: Fri, 28 Jul 2023 09:24:01 +0000 Subject: [PATCH] Added TNX/PSE to label --- application/controllers/Labels.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index 0ebf411b..34ed4e58 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -194,6 +194,7 @@ class Labels extends CI_Controller { 'mygrid' => $qso->station_gridsquare, 'sat' => $qso->COL_SAT_NAME, 'sat_mode' => $qso->COL_SAT_MODE, + 'qsl_recvd' => $qso->COL_QSL_RCVD ]; } if (!empty($qso_data)) { @@ -242,6 +243,7 @@ class Labels extends CI_Controller { $text .= "\n".'Satellite: '.$qso['sat'].' Mode: '.strtoupper($qso['sat_mode']); } $text .= "\nThanks for the QSO".($numofqsos>1 ? 's' : ''); + $text .= " | ".($qso['qsl_recvd'] <> 'Y' ? 'TNX' : 'PSE')." QSL"; $pdf->Add_Label($text); }