Added TNX/PSE to label

这个提交包含在:
int2001 2023-07-28 09:24:01 +00:00
父节点 77821a49ff
当前提交 2e1329a159
找不到此签名对应的密钥
GPG 密钥 ID: DFB1C13CD2DB037B

查看文件

@ -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);
}