MY_CNTY and MY_STATE support for ADIF export RDA data
这个提交包含在:
父节点
f40b244f73
当前提交
2555f5ff90
共有 1 个文件被更改,包括 11 次插入 和 1 次删除
|
|
@ -218,8 +218,19 @@ class AdifHelper {
|
||||||
$county = trim($qso->station_cnty);
|
$county = trim($qso->station_cnty);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($qso->station_cnty && ( $qso->station_dxcc == '54' || $qso->station_dxcc == '15')) {
|
||||||
|
$county = trim($qso->station_cnty);
|
||||||
|
}
|
||||||
|
|
||||||
$line .= $this->getAdifFieldLine("MY_CNTY", $county);
|
$line .= $this->getAdifFieldLine("MY_CNTY", $county);
|
||||||
|
|
||||||
|
if ($qso->state && ( $qso->station_dxcc == '54' || $qso->station_dxcc == '15')) {
|
||||||
|
$state = trim($qso->state);
|
||||||
|
$line .= $this->getAdifFieldLine("MY_STATE", $state);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$line .= $this->getAdifFieldLine("WWFF_REF", $qso->{'COL_WWFF_REF'});
|
$line .= $this->getAdifFieldLine("WWFF_REF", $qso->{'COL_WWFF_REF'});
|
||||||
$line .= $this->getAdifFieldLine("MY_WWFF_REF", $qso->station_wwff);
|
$line .= $this->getAdifFieldLine("MY_WWFF_REF", $qso->station_wwff);
|
||||||
|
|
||||||
|
|
@ -259,7 +270,6 @@ class AdifHelper {
|
||||||
MY_NAME
|
MY_NAME
|
||||||
MY_POSTAL_CODE
|
MY_POSTAL_CODE
|
||||||
MY_RIG
|
MY_RIG
|
||||||
MY_STATE
|
|
||||||
MY_STREET
|
MY_STREET
|
||||||
MY_USACA_COUNTIES
|
MY_USACA_COUNTIES
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用