If LOTW import entry isn't found within the database but its within the ADIF from LOTW QSO record is created.

这个提交包含在:
Peter Goodhall 2019-05-22 15:10:57 +01:00
父节点 63532296fc
当前提交 c397716cf2

查看文件

@ -60,7 +60,14 @@ class Lotw extends CI_Controller {
}
$status = $this->logbook_model->import_check($time_on, $record['call'], $record['band']);
$lotw_status = $this->logbook_model->lotw_update($time_on, $record['call'], $record['band'], $qsl_date, $record['qsl_rcvd']);
if($status == "No Match") {
// Create the Entry
$this->logbook_model->import($record);
} else {
$lotw_status = $this->logbook_model->lotw_update($time_on, $record['call'], $record['band'], $qsl_date, $record['qsl_rcvd']);
}
$table .= "<tr>";
$table .= "<td>".$time_on."</td>";