If LOTW import entry isn't found within the database but its within the ADIF from LOTW QSO record is created.
这个提交包含在:
父节点
63532296fc
当前提交
c397716cf2
共有 1 个文件被更改,包括 8 次插入 和 1 次删除
|
|
@ -60,7 +60,14 @@ class Lotw extends CI_Controller {
|
||||||
}
|
}
|
||||||
|
|
||||||
$status = $this->logbook_model->import_check($time_on, $record['call'], $record['band']);
|
$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 .= "<tr>";
|
||||||
$table .= "<td>".$time_on."</td>";
|
$table .= "<td>".$time_on."</td>";
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用