DXCC-Enrichment for spotter, to filter that at bandplan in future

这个提交包含在:
int2001 2023-07-21 08:17:04 +00:00
父节点 26fe064a93
当前提交 e6034647ba

查看文件

@ -4023,8 +4023,8 @@ class Logbook_model extends CI_Model {
$minutes += $spotage->i;
$singlespot->age=$minutes;
if ($minutes<=$maxage) {
$dxcc=$this->dxcc_lookup($singlespot->spotted,date('Ymd', time()));
$singlespot->dxcc=$dxcc;
$dxcc=$this->dxcc_lookup($singlespot->spotter,date('Ymd', time()));
$singlespot->dxcc_spotter=$dxcc;
array_push($spotsout,$singlespot);
}
}
@ -4061,8 +4061,8 @@ class Logbook_model extends CI_Model {
$minutes += $spotage->i;
$json->age=$minutes;
if ($minutes<=$maxage) {
$dxcc=$this->dxcc_lookup($json->spotted,date('Ymd', time()));
$json->dxcc=$dxcc;
$dxcc=$this->dxcc_lookup($json->spotter,date('Ymd', time()));
$json->dxcc_spotter=$dxcc;
return ($json);
} else {
return '';