Add sig/sig_info to function reassign in Stations model

这个提交包含在:
Daniel Clerc 2020-11-08 21:46:57 +01:00
父节点 27418ea0a5
当前提交 59af8dd7f1

查看文件

@ -176,6 +176,14 @@ class Stations extends CI_Model {
$this->db->where('COL_MY_SOTA_REF', $row->station_sota);
}
if($row->station_sig != "") {
$this->db->where('COL_MY_SIG', $row->station_sig);
}
if($row->station_sig_info != "") {
$this->db->where('COL_MY_SIG_INFO', $row->station_sig_info);
}
$this->db->where('COL_MY_COUNTRY', $row->station_country);
if( strpos($row->station_gridsquare, ',') !== false ) {